We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f947d65 + 2e2ef38 commit 0513e31Copy full SHA for 0513e31
.github/workflows/release.yml
@@ -18,7 +18,7 @@ jobs:
18
env:
19
DOCKER_IMAGE: smallstep/step-kms-plugin
20
CLOUD_TAG: cloud
21
- DEBIAN_TAG: bookworm
+ DEBIAN_TAG: trixie
22
WOLFI_TAG: wolfi
23
outputs:
24
version: ${{ steps.extract-tag.outputs.VERSION }}
docker/Dockerfile.debian
@@ -1,4 +1,4 @@
1
-FROM golang:bookworm AS builder
+FROM golang:trixie AS builder
2
3
WORKDIR /src
4
COPY . .
@@ -7,7 +7,7 @@ RUN apt-get update
7
RUN apt-get install -y --no-install-recommends gcc pkgconf libpcsclite-dev
8
RUN make V=1 build
9
10
-FROM smallstep/step-cli:bookworm
+FROM smallstep/step-cli:trixie
11
12
COPY --from=builder /src/bin/step-kms-plugin /usr/local/bin/step-kms-plugin
13
0 commit comments