We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41a3b95 commit 7ef09b1Copy full SHA for 7ef09b1
1 file changed
Dockerfile
@@ -5,7 +5,7 @@ FROM node:16.13.1-alpine3.14
5
WORKDIR /app
6
7
# Copy package.json and package-lock.json to avoid reinstalling packages
8
-COPY package*.json .
+COPY package*.json ./
9
10
# Install packages
11
RUN npm install
@@ -17,4 +17,4 @@ COPY . .
17
EXPOSE 3000
18
19
# Start app
20
-CMD ["npm","start"]
+CMD ["npm","start"]
0 commit comments