From 0359a625c19be225a57361b41dbd130d8ea6eba5 Mon Sep 17 00:00:00 2001 From: Matjaz Pirnovar Date: Wed, 9 Apr 2025 10:45:22 -0700 Subject: [PATCH 1/2] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 07c145d4..12b9afbb 100644 --- a/README.md +++ b/README.md @@ -583,3 +583,5 @@ Copyright 2019-present, Optimizely, Inc. and contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + +test From 3a7ae07c654f9606a23b4e85352ba64364846495 Mon Sep 17 00:00:00 2001 From: Matjaz Pirnovar Date: Wed, 9 Apr 2025 10:59:28 -0700 Subject: [PATCH 2/2] Update Dockerfile.alpine --- scripts/dockerfiles/Dockerfile.alpine | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/dockerfiles/Dockerfile.alpine b/scripts/dockerfiles/Dockerfile.alpine index 07dfc6e2..08c4fd80 100644 --- a/scripts/dockerfiles/Dockerfile.alpine +++ b/scripts/dockerfiles/Dockerfile.alpine @@ -1,5 +1,5 @@ ARG GO_VERSION -FROM golang:$GO_VERSION-alpine3.17 as builder +FROM golang:$GO_VERSION-alpine3.21 as builder # hadolint ignore=DL3018 RUN addgroup -S agentgroup && adduser -S agentuser -G agentgroup RUN apk add --no-cache make gcc libc-dev git curl @@ -7,7 +7,7 @@ WORKDIR /go/src/github.com/optimizely/agent COPY . . RUN make setup build -FROM alpine:3.17 +FROM alpine:3.21 RUN apk add --no-cache ca-certificates COPY --from=builder /go/src/github.com/optimizely/agent/bin/optimizely /optimizely COPY --from=builder /etc/passwd /etc/passwd