Update Dockerfile

This commit is contained in:
Aykut Saraç 2023-03-09 22:47:03 +03:00 committed by GitHub
parent 5524ab37d3
commit 75b4d907b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
FROM node:14-alpine as builder
WORKDIR /src
COPY . /src/
RUN npm ci && npm run build
RUN yarn install --frozen-lockfile && yarn build
# App
FROM nginxinc/nginx-unprivileged