mealie/Dockerfile
2021-01-06 18:01:46 +01:00

27 lines
No EOL
645 B
Docker

FROM node:alpine as build-stage
WORKDIR /app
COPY ./frontend/package*.json ./
RUN npm install
COPY ./frontend/ .
RUN npm run build
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.8
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
COPY ./mealie/data/templates/recipes.md /app/data/templates/
COPY --from=build-stage /app/dist /app/dist
RUN rm -rf /app/test
ENV ENV prod
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "9000"]