mealie/Dockerfile

27 lines
669 B
Text
Raw Normal View History

2021-01-09 07:57:59 +00:00
FROM node:lts-alpine as build-stage
2020-12-25 01:37:38 +00:00
WORKDIR /app
COPY ./frontend/package*.json ./
RUN npm install
COPY ./frontend/ .
RUN npm run build
2021-01-02 07:33:19 +00:00
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.8
2020-12-25 01:37:38 +00: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-09 07:57:59 +00:00
COPY ./mealie/data/templates/recipes.md /app/data/templates/recipes.md
2020-12-25 01:37:38 +00:00
COPY --from=build-stage /app/dist /app/dist
2021-01-09 07:57:59 +00:00
RUN rm -rf /app/test /app/temp
2020-12-25 01:37:38 +00:00
2021-01-05 13:14:55 +00:00
ENV ENV prod
2021-01-02 07:33:19 +00:00
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "9000"]