Skip to content

Commit c54f0d4

Browse files
committed
update docker to use npm
1 parent 8cc0ac5 commit c54f0d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ WORKDIR /app
66

77
# Install dependencies
88
COPY package.json .
9-
COPY yarn.lock .
10-
RUN yarn install
9+
COPY package-lock.json .
10+
RUN npm install
1111

1212
# Copy the rest of the application code
1313
COPY . .

0 commit comments

Comments
 (0)