1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-08 15:05:25 +02:00

backup bug fix

This commit is contained in:
Hayden 2021-01-09 11:40:06 -09:00
parent c378614f56
commit 12c78ee2c4
4 changed files with 18 additions and 14160 deletions

View file

@ -3,7 +3,6 @@ FROM python:3
RUN apt-get update -y && \
apt-get install -y python-pip python-dev
# We copy just the requirements.txt first to leverage Docker cache
COPY ./requirements.txt /app/requirements.txt
@ -17,5 +16,4 @@ COPY ./mealie /app
ENTRYPOINT [ "python" ]
# TODO Reconfigure Command to start a Gunicorn Server that managed the Uvicorn Server. Also Learn how to do that :-/
CMD [ "app.py" ]