Skip to content

Commit 707cdd0

Browse files
committed
chore: tweak renovate and deps
1 parent 00f23e5 commit 707cdd0

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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
66
WORKDIR /app
77

88
# Copy the package.json and package-lock.json files to the working directory
@@ -17,7 +17,7 @@ COPY . .
1717
RUN 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
2121
EXPOSE 8080
2222
COPY --from=build /app/out /usr/share/nginx/html
2323
COPY ./config/nginx/default.conf /etc/nginx/conf.d/default.conf

packages/extensions/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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
66
WORKDIR /app
77

88
# Copy the package.json and package-lock.json files to the working directory
@@ -21,7 +21,7 @@ COPY . .
2121
RUN 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
2525
EXPOSE 8080
2626
COPY --from=build /app/out /usr/share/nginx/html
2727
COPY ./config/nginx/default.conf /etc/nginx/conf.d/default.conf

renovate.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
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
}

0 commit comments

Comments
 (0)