Update Dockerfile

This commit is contained in:
Bastian Meissner 2022-01-30 12:45:22 +01:00
parent a5ad616bc8
commit d4f593c4ce

View file

@ -2,7 +2,7 @@ FROM node:lts AS build
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install
RUN yarn install --prod
COPY . ./
RUN yarn build