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

26 lines
624 B
Text
Raw Normal View History

2020-12-24 16:37:38 -09:00
FROM node:alpine as build-stage
WORKDIR /app
COPY ./frontend/package*.json ./
RUN npm install
COPY ./frontend/ .
RUN npm run build
2021-01-01 22:33:19 -09:00
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.8
2020-12-24 16:37:38 -09:00
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
WORKDIR /app
RUN pip install -r requirements.txt
COPY ./mealie /app
2021-01-03 14:25:38 -09:00
COPY ./mealie/data/templates/recipes.md /app/data/templates/
2020-12-24 16:37:38 -09:00
COPY --from=build-stage /app/dist /app/dist
2021-01-05 14:14:55 +01:00
ENV ENV prod
2021-01-01 22:33:19 -09:00
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "9000"]