Fix missing app installation in docker images

This commit is contained in:
Antoine Bertin 2021-04-30 01:35:13 +02:00
commit 6e3c2e642b
No known key found for this signature in database
GPG key ID: 09851B52754E2327
2 changed files with 6 additions and 0 deletions

View file

@ -41,6 +41,9 @@ COPY alembic.ini /app
COPY ./Caddyfile /app
COPY ./dev/data/templates /app/data/templates
# project app
RUN poetry install --no-dev --no-interaction --no-ansi
# frontend build
COPY --from=build-stage /app/dist /app/dist

View file

@ -20,4 +20,7 @@ COPY ./mealie /app/mealie
COPY ./alembic /app/alembic
COPY alembic.ini /app
# project app
RUN poetry install --no-dev --no-interaction --no-ansi
CMD [ "/app/mealie/run.sh", "development" ]