File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22# build stage and the runtime stage into two different steps
33
44# Stage 1: Build the Next.js application
5- FROM node:alpine AS build
5+ FROM node:24- alpine AS build
66WORKDIR /app
77
88# Copy the package.json and package-lock.json files to the working directory
@@ -17,7 +17,7 @@ COPY . .
1717RUN NEXT_TELEMETRY_DISABLED=1 npm run build
1818
1919# Stage 2: Copy the website from the previous container to a Nginx container
20- FROM nginxinc/nginx-unprivileged:alpine
20+ FROM nginxinc/nginx-unprivileged:1.27- alpine
2121EXPOSE 8080
2222COPY --from=build /app/out /usr/share/nginx/html
2323COPY ./config/nginx/default.conf /etc/nginx/conf.d/default.conf
Original file line number Diff line number Diff line change 22# build stage and the runtime stage into two different steps
33
44# Stage 1: Build the Next.js application
5- FROM node:alpine AS build
5+ FROM node:24- alpine AS build
66WORKDIR /app
77
88# Copy the package.json and package-lock.json files to the working directory
@@ -21,7 +21,7 @@ COPY . .
2121RUN NEXT_TELEMETRY_DISABLED=1 npm run build
2222
2323# Stage 2: Copy the website from the previous container to a Nginx container
24- FROM nginxinc/nginx-unprivileged:alpine
24+ FROM nginxinc/nginx-unprivileged:1.27- alpine
2525EXPOSE 8080
2626COPY --from=build /app/out /usr/share/nginx/html
2727COPY ./config/nginx/default.conf /etc/nginx/conf.d/default.conf
Original file line number Diff line number Diff line change 77 "description" : " Group all GitHub Actions updates together" ,
88 "matchManagers" : [" github-actions" ],
99 "groupName" : " GitHub Actions"
10+ },
11+ {
12+ "description" : " Group all non-major npm dependency updates together" ,
13+ "matchManagers" : [" npm" ],
14+ "matchUpdateTypes" : [" minor" , " patch" ],
15+ "groupName" : " npm dependencies (non-major)"
1016 }
1117 ]
1218}
You can’t perform that action at this time.
0 commit comments