Skip to content

Commit c0c5d1c

Browse files
committed
Fix dependency issues in frontend
1 parent 2cb7139 commit c0c5d1c

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

frontend/.dockerignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
node_modules
22
*.log
3-
package-lock.json
43
dist

frontend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM node:15.7.0-alpine As builder
22
WORKDIR /usr/src/app
3-
COPY package.json ./
3+
COPY package.json package-lock.json ./
44
RUN npm install
55
COPY . .
66
RUN npm run build

0 commit comments

Comments
 (0)