Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Strongbox version that supports age #101

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:1.22-alpine AS build
FROM golang:1.23-alpine AS build

ENV \
STRONGBOX_VERSION=1.1.0 \
STRONGBOX_VERSION=2.0.0-RC4 \
KUSTOMIZE_VERSION=v5.4.1

RUN os=$(go env GOOS) && arch=$(go env GOARCH) \
Expand All @@ -21,7 +21,7 @@ RUN go test -v -cover ./... \

# final stage
# argocd requires that sidecar container is running as user 999
FROM alpine:3.19
FROM alpine:3.20

USER root

Expand All @@ -37,5 +37,4 @@ COPY --from=build \
/usr/local/bin/

ENV USER=argocd

USER $ARGOCD_USER_ID