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.
1 parent d770a16 commit b94a793Copy full SHA for b94a793
scripts/dockerfiles/Dockerfile.alpine
@@ -1,13 +1,13 @@
1
ARG GO_VERSION
2
-FROM golang:$GO_VERSION-alpine3.21 as builder
+FROM golang:$GO_VERSION-alpine3.20 as builder
3
# hadolint ignore=DL3018
4
RUN addgroup -S agentgroup && adduser -S agentuser -G agentgroup
5
RUN apk add --no-cache make gcc libc-dev git curl
6
WORKDIR /go/src/github.com/optimizely/agent
7
COPY . .
8
RUN make setup build
9
10
-FROM alpine:3.21
+FROM alpine:3.20
11
RUN apk add --no-cache ca-certificates
12
COPY --from=builder /go/src/github.com/optimizely/agent/bin/optimizely /optimizely
13
COPY --from=builder /etc/passwd /etc/passwd
0 commit comments