Update Dockerfile
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Alessio Davoli 2023-08-23 14:59:28 +02:00
parent 6e9b2dcaa4
commit 85c482dfaa

View file

@ -3,7 +3,7 @@ FROM node:18 AS build
WORKDIR /usr
COPY package.json ./
COPY yarn.lock ./
RUN yarn install
RUN yarn install --frozen-lockfile --registry http://172.17.0.2:4873
COPY . ./
RUN yarn build