Update Golang base image in Dockerfile

This commit is contained in:
James Musselman 2023-11-21 15:14:22 -06:00
parent 438bc71f18
commit a9a3b7d2e6

View file

@ -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