change: back to npm

This commit is contained in:
Domingo Dirutigliano
2023-10-12 14:20:00 +02:00
parent c044383fd0
commit 13a8711d13
5 changed files with 4343 additions and 2649 deletions

View File

@@ -2,10 +2,10 @@ FROM node:18 AS frontend
RUN mkdir /app
WORKDIR /app
ADD ./frontend/package.json .
ADD ./frontend/yarn.lock .
RUN yarn install --network-timeout 300000
ADD ./frontend/package-lock.json .
RUN npm ci
COPY ./frontend/ .
RUN yarn build
RUN npm run build
#Building main conteiner