From 089a13d18c065b9acc24e60aa4bdeb87169d339e Mon Sep 17 00:00:00 2001 From: Faisal Memon Date: Wed, 11 Sep 2024 12:31:06 -0700 Subject: [PATCH] Update to go 1.22.3, fix Dockerfile warnings (#174) * Update to go 1.22.3, fix Dockerfile warnings Signed-off-by: Faisal Memon * Remove default version from dockerfile Signed-off-by: Faisal Memon --------- Signed-off-by: Faisal Memon --- .github/tests/it/spiffe-helper/Dockerfile | 2 +- Dockerfile | 4 ++-- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/tests/it/spiffe-helper/Dockerfile b/.github/tests/it/spiffe-helper/Dockerfile index d7fbedef..bd982ae2 100644 --- a/.github/tests/it/spiffe-helper/Dockerfile +++ b/.github/tests/it/spiffe-helper/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.1-alpine AS spiffe-helper +FROM golang:1.22.3-alpine AS spiffe-helper COPY ./ /service/ WORKDIR /service RUN go build -tags netgo -a -v -o /service/spiffe-helper ./cmd/spiffe-helper diff --git a/Dockerfile b/Dockerfile index 46f7c71f..5d1dbbd0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Build the spiffe-helper binary ARG go_version -FROM --platform=$BUILDPLATFORM golang:${go_version}-alpine as base +FROM --platform=$BUILDPLATFORM golang:${go_version}-alpine AS base WORKDIR /workspace # Cache deps before building and copying source so that we don't need to re-download as much @@ -18,7 +18,7 @@ COPY pkg/ pkg/ # crane digest tonistiigi/xx:1.3.0 FROM --platform=${BUILDPLATFORM} tonistiigi/xx@sha256:904fe94f236d36d65aeb5a2462f88f2c537b8360475f6342e7599194f291fb7e AS xx -FROM --platform=${BUILDPLATFORM} base as builder +FROM --platform=${BUILDPLATFORM} base AS builder ARG TARGETPLATFORM ARG TARGETARCH diff --git a/go.mod b/go.mod index f74eede5..bd3598cd 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/spiffe/spiffe-helper -go 1.22.1 +go 1.22.3 require ( github.com/hashicorp/hcl v1.0.0