1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-04 21:15:22 +02:00
mealie/Dockerfile.dev

19 lines
272 B
Text
Raw Normal View History

2020-12-24 16:37:38 -09:00
FROM python:3
RUN apt-get update -y && \
apt-get install -y python-pip python-dev
COPY ./requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
RUN pip install pytest
2020-12-24 16:37:38 -09:00
2021-01-05 13:16:13 +01:00
COPY ./mealie /app
2020-12-24 16:37:38 -09:00
ENTRYPOINT [ "python" ]
CMD [ "app.py" ]