Skip to content

Commit ea550b6

Browse files
committed
Always do npm ci
1 parent c511c94 commit ea550b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM node:18-alpine
22
WORKDIR /app
33
COPY my-app .
4-
RUN if [ "$NODE_ENV" = "production" ]; then npm install --production; else npm ci; fi
4+
RUN npm ci
55
EXPOSE 5173
66
CMD ["npm", "run", "dev"]

0 commit comments

Comments
 (0)