Merge branch 'Skeris-main-patch-59047' into 'main'

Update Dockerfile

See merge request frontend/admin!44
This commit is contained in:
Mikhail 2023-10-20 21:25:58 +00:00
commit af49d6c523

@ -2,11 +2,9 @@ FROM node:19.1-alpine as build
RUN apk update && rm -rf /var/cache/apk/*
WORKDIR /usr/app
COPY package.json .
COPY tsconfig.json .
COPY . .
RUN yarn install --ignore-scripts --non-interactive --frozen-lockfile && yarn cache clean
COPY . .
RUN yarn build