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

update golang/alpine #157

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .test-defs/pod-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ spec:
ACCESS_KEY_ID_FILE=<(echo $ACCESS_KEY_ID)
SECRET_ACCESS_KEY_FILE=<(echo $SECRET_ACCESS_KEY)
IMAGE_TAG=$IMAGE_TAG
image: golang:1.21.5
image: golang:1.21.13

4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

############# golang-base
ARG PROVIDER=all
FROM golang:1.21.5 AS golang-base
FROM golang:1.21.13 AS golang-base

############# terraform-bundle
FROM golang-base AS terraform-base
Expand Down Expand Up @@ -44,7 +44,7 @@ ARG PROVIDER
RUN make install PROVIDER=$PROVIDER

############# terraformer
FROM alpine:3.19.1 AS terraformer
FROM alpine:3.21.2 AS terraformer

# add additional packages that are required by provider plugins
RUN apk add --update tzdata
Expand Down