We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd381ae commit ff7f9a8Copy full SHA for ff7f9a8
frontend/peerprep/Dockerfile
@@ -1,6 +1,6 @@
1
FROM node:20-alpine AS development-dependencies-env
2
-COPY . /app
3
WORKDIR /app
+COPY package*.json ./
4
RUN npm ci
5
6
FROM node:20-alpine AS production-dependencies-env
@@ -19,4 +19,4 @@ COPY ./package.json package-lock.json /app/
19
COPY --from=production-dependencies-env /app/node_modules /app/node_modules
20
COPY --from=build-env /app/build /app/build
21
22
-CMD ["npm", "run", "start"]
+CMD ["npm", "start"]
0 commit comments