Update base image and Go
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-12-22 17:19:10 -08:00
parent 6a7628a84e
commit 14edfaf0e9
3 changed files with 6 additions and 4 deletions

View File

@@ -1,11 +1,11 @@
FROM golang:1.20.5-alpine AS build
FROM golang:1.23.4-alpine AS build
RUN apk --no-cache add git
WORKDIR /go/src/github.com/abh/geoipapi
ADD . /go/src/github.com/abh/geoipapi
RUN go install -v ./...
FROM alpine:3.18
FROM alpine:3.21
USER root
RUN apk --no-cache add ca-certificates
RUN apk --no-cache upgrade