We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61e0748 commit 85cb43cCopy full SHA for 85cb43c
1 file changed
Dockerfile
@@ -1,6 +1,8 @@
1
-FROM node:25-bookworm AS builder
+FROM node:25-bullseye-slim AS builder
2
+
3
+RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl gnupg git \
4
+ && rm -rf /var/lib/apt/lists/*
5
-RUN mkdir -p /opt/autoupdate/dist
6
WORKDIR /opt/autoupdate
7
8
COPY . .
@@ -10,7 +12,7 @@ RUN npm install -g corepack \
10
12
11
13
RUN yarn install --frozen-lockfile && yarn run build
14
-FROM node:25-bookworm AS runner
15
+FROM node:25-bullseye-slim AS runner
16
17
LABEL com.github.actions.name="Auto-update pull requests with changes from their base branch"
18
LABEL com.github.actions.description="A GitHub Action that auto-updates PRs with changes from their base branch"
0 commit comments