Skip to content

Commit 7ef09b1

Browse files
authored
Update Dockerfile
1 parent 41a3b95 commit 7ef09b1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM node:16.13.1-alpine3.14
55
WORKDIR /app
66

77
# Copy package.json and package-lock.json to avoid reinstalling packages
8-
COPY package*.json .
8+
COPY package*.json ./
99

1010
# Install packages
1111
RUN npm install
@@ -17,4 +17,4 @@ COPY . .
1717
EXPOSE 3000
1818

1919
# Start app
20-
CMD ["npm","start"]
20+
CMD ["npm","start"]

0 commit comments

Comments
 (0)