Update Dockerfile

This commit is contained in:
phntxx 2022-04-10 21:37:12 +02:00
parent 3131110b4c
commit 13ffb59e2b

View file

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