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 Docker tag to v1.20 #66

Merged
merged 1 commit into from
Aug 5, 2023
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
6 changes: 3 additions & 3 deletions tetrad.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Download zig for builarch amd64
FROM --platform=$BUILDPLATFORM golang:1.19 AS zigdownloader-amd64
FROM --platform=$BUILDPLATFORM golang:1.20 AS zigdownloader-amd64

RUN apt-get update && \
apt-get install -y --no-install-recommends xz-utils && \
Expand All @@ -8,7 +8,7 @@ RUN apt-get update && \
mv ./zig-*/ /zig/

# Download zig for builarch arm64
FROM --platform=$BUILDPLATFORM golang:1.19 AS zigdownloader-arm64
FROM --platform=$BUILDPLATFORM golang:1.20 AS zigdownloader-arm64

RUN apt-get update && \
apt-get install -y --no-install-recommends xz-utils && \
Expand Down Expand Up @@ -73,7 +73,7 @@ COPY Makefile Makefile
RUN GOOS=linux GOARCH=${TARGETARCH} make cni-plugins

# Fetch CNI plugins
FROM golang:1.19 AS plugins
FROM golang:1.20 AS plugins

WORKDIR /workspace
COPY aqua.yaml aqua.yaml
Expand Down