basics being displayed

This commit is contained in:
2026-03-16 12:44:06 -06:00
parent ef64c5cd0d
commit c252ef0e11
21 changed files with 1283 additions and 43 deletions

27
Dockerfile Normal file
View File

@@ -0,0 +1,27 @@
FROM hexpm/elixir:1.18.4-erlang-26.2.5.18-debian-bookworm-20260223-slim
RUN apt-get update && apt-get install -y \
build-essential \
git \
curl \
inotify-tools \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
RUN mix local.hex --force && \
mix local.rebar --force
COPY mix.exs mix.lock ./
RUN mix deps.get
COPY config config
COPY assets assets
COPY lib lib
COPY priv priv
RUN mix assets.setup
EXPOSE 4000
CMD ["mix", "phx.server"]