mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-23 10:27:23 -08:00
19 lines
272 B
Docker
19 lines
272 B
Docker
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
|
|
|
|
COPY ./mealie /app
|
|
|
|
|
|
ENTRYPOINT [ "python" ]
|
|
|
|
CMD [ "app.py" ] |