Proff12 commited on
Commit
b4f606e
·
verified ·
1 Parent(s): 8971520

update docker

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -3,7 +3,8 @@
3
  FROM node:20-alpine AS frontend
4
  WORKDIR /app/frontend
5
  COPY frontend/package*.json ./
6
- RUN npm ci
 
7
  COPY frontend/ ./
8
  RUN npm run build
9
 
 
3
  FROM node:20-alpine AS frontend
4
  WORKDIR /app/frontend
5
  COPY frontend/package*.json ./
6
+ COPY frontend/package-lock.json ./
7
+ RUN npm install
8
  COPY frontend/ ./
9
  RUN npm run build
10