add icons to static path

This commit is contained in:
Graham McIntire 2025-06-16 11:04:58 -05:00
parent 54f8401d2c
commit 6f54625dc8
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -74,9 +74,9 @@ RUN apt-get update -y && \
# Set the locale # Set the locale
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen
ENV LANG en_US.UTF-8 ENV LANG="en_US.UTF-8"
ENV LANGUAGE en_US:en ENV LANGUAGE="en_US:en"
ENV LC_ALL en_US.UTF-8 ENV LC_ALL="en_US.UTF-8"
WORKDIR "/app" WORKDIR "/app"
RUN chown nobody /app RUN chown nobody /app

View file

@ -17,7 +17,7 @@ defmodule AprsWeb do
those modules here. those modules here.
""" """
def static_paths, do: ~w(assets fonts images favicon.ico robots.txt) def static_paths, do: ~w(assets fonts images aprs-symbols favicon.ico robots.txt)
def router do def router do
quote do quote do