From a9a3b7d2e68f05183b624bff03e24729954437c1 Mon Sep 17 00:00:00 2001 From: musselman Date: Tue, 21 Nov 2023 15:14:22 -0600 Subject: [PATCH] Update Golang base image in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aef3909..bab089a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Set the base image -FROM golang:1.20-alpine as builder +FROM docker.io/library/golang:1.21-alpine3.18 as builder RUN apk --no-cache add ca-certificates git # Set the working directory WORKDIR /app