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

documentation updates

This commit is contained in:
Hayden 2021-01-08 22:57:59 -09:00
parent 7b6fdc7619
commit 79f957eb8c
12 changed files with 82 additions and 36 deletions

View file

@ -1,4 +1,4 @@
FROM node:alpine as build-stage
FROM node:lts-alpine as build-stage
WORKDIR /app
COPY ./frontend/package*.json ./
RUN npm install
@ -18,9 +18,9 @@ WORKDIR /app
RUN pip install -r requirements.txt
COPY ./mealie /app
COPY ./mealie/data/templates/recipes.md /app/data/templates/
COPY ./mealie/data/templates/recipes.md /app/data/templates/recipes.md
COPY --from=build-stage /app/dist /app/dist
RUN rm -rf /app/test
RUN rm -rf /app/test /app/temp
ENV ENV prod