File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- 22.17.1
1+ 22.18.0
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ COPY package.json package-lock.json /tmp/
44RUN jq 'del(.version)' < /tmp/package.json > /app/package.json
55RUN jq 'del(.packages."".version) | del(.version)' < /tmp/package-lock.json > /app/package-lock.json
66
7- FROM node:22.17.0 -alpine AS build-front
7+ FROM node:22.17.1 -alpine AS build-front
88EXPOSE 3000
99WORKDIR /app
1010RUN apk --no-cache add make build-base
@@ -18,13 +18,13 @@ COPY front/index.html ./
1818COPY front/src ./src
1919RUN npm run build
2020
21- FROM node:22.17.0 -alpine AS production-deps
21+ FROM node:22.17.1 -alpine AS production-deps
2222WORKDIR /app
2323RUN apk --no-cache add python3 make build-base
2424COPY --from=packages /app/package.json /app/package-lock.json /app/
2525RUN npm ci --omit=dev
2626
27- FROM node:22.17.0 -alpine
27+ FROM node:22.17.1 -alpine
2828EXPOSE 3000
2929ENV NODE_ENV=production
3030WORKDIR /app
You can’t perform that action at this time.
0 commit comments