From d6d26c1eaed37bc5d609355616408372fbbbcde3 Mon Sep 17 00:00:00 2001 From: k-matsuzawa Date: Thu, 20 Jun 2024 10:24:17 +0900 Subject: [PATCH] feat: update goose to 3.21.1 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5355c10..be29368 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM --platform=$TARGETPLATFORM golang:1.22.2-alpine3.19 as builder +FROM --platform=$TARGETPLATFORM golang:1.22.4-alpine3.20 as builder -RUN GOOSE_VERSION=v3.20.0 && \ +RUN GOOSE_VERSION=v3.21.1 && \ go install github.com/pressly/goose/v3/cmd/goose@${GOOSE_VERSION} -FROM --platform=$TARGETPLATFORM alpine:3.19 as runner +FROM --platform=$TARGETPLATFORM alpine:3.20 as runner RUN apk add --update --no-cache ca-certificates libstdc++ make bash COPY --from=builder /go/bin/goose /usr/bin/goose CMD ["/usr/bin/goose"]