Azan commited on
Commit
6cd1f48
·
1 Parent(s): 71f27c0

Fix Dockerfile: Allow yarn install without frozen lockfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -7,7 +7,7 @@ WORKDIR /app/frontend
7
 
8
  # Install dependencies
9
  COPY web-ui/package.json web-ui/yarn.lock ./
10
- RUN yarn install --frozen-lockfile
11
 
12
  # Copy source and build
13
  COPY web-ui/ ./
 
7
 
8
  # Install dependencies
9
  COPY web-ui/package.json web-ui/yarn.lock ./
10
+ RUN yarn install
11
 
12
  # Copy source and build
13
  COPY web-ui/ ./