migrated to yarn

This commit is contained in:
nik012003
2023-04-29 09:53:07 +02:00
parent 9bf063eb96
commit f8599f798a
2 changed files with 3 additions and 5 deletions

View File

@@ -1,13 +1,11 @@
FROM node:16-alpine AS frontend
RUN apk add --update npm
RUN npm install -g npm@latest
FROM node:20-bullseye-slim AS frontend
RUN mkdir /app
WORKDIR /app
ADD ./frontend/package.json .
ADD ./frontend/package-lock.json .
RUN npm install
RUN yarn install
COPY ./frontend/ .
RUN npm run build
RUN yarn build
#Building main conteiner

0
start.py Normal file → Executable file
View File