Skip to content

Commit a14d9d0

Browse files
committed
build(docker): Install deps with frozen lock file
1 parent bfb5bf4 commit a14d9d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/spuxx-astro/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM node:lts-alpine AS build
22
WORKDIR /app
33
COPY package*.json ./
4-
RUN npm install
4+
RUN npm install --frozen-lockfile
55
COPY . .
66
RUN npm run build -- --mode custom
77

@@ -10,4 +10,4 @@ COPY ./.nginx/nginx.conf /etc/nginx/nginx.conf
1010
COPY --from=build /app/dist /usr/share/nginx/html
1111

1212
USER 1000
13-
EXPOSE 8080
13+
EXPOSE 8080

0 commit comments

Comments
 (0)