include default ecto database url from https://hexdocs.pm/phoenix/deployment.html

This commit is contained in:
fzorb 2025-02-09 18:00:51 +02:00
parent 254bca9d22
commit 6f305fa325

View File

@ -4,6 +4,7 @@ WORKDIR /app
COPY . /app
ENV MIX_ENV=prod
ENV DATABASE_URL=ecto://USER:PASS@HOST/database
RUN mix deps.get --only prod
RUN mix compile