Skip to content

Commit

Permalink
Upgrade go and alpine versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerome Touffe-Blin committed Nov 27, 2023
1 parent 3036ef7 commit 7eff8a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -3,15 +3,15 @@
version: 2.1

orbs:
go: circleci/go@1.7.3
go: circleci/go@1.9.0

# Define a job to be invoked later in a workflow.
# See: https://circleci.com/docs/configuration-reference/#jobs
jobs:
build-and-test:
executor:
name: go/default # Use the default executor from the orb
tag: '1.19.2' # Specify a version tag
tag: '1.21.4' # Specify a version tag
# Add steps to the job
# See: https://circleci.com/docs/configuration-reference/#steps
steps:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,11 +1,11 @@
FROM golang:1.19.5 AS BUILDER
FROM golang:1.21.4 AS BUILDER
WORKDIR /go/src/github.com/jtblin/kube2iam
ENV ARCH=linux
ENV CGO_ENABLED=0
COPY . ./
RUN make setup && make build

FROM alpine:3.17.1
FROM alpine:3.18.4
RUN apk --no-cache add \
ca-certificates \
iptables
Expand Down

0 comments on commit 7eff8a7

Please sign in to comment.