Skip to content

Commit 9d0e313

Browse files
committed
Dockerfile: go 1.17 -> 1.23
Plus, fix docker style warnings.
1 parent e280414 commit 9d0e313

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM golang:1.17 as build
1+
FROM golang:1.23 AS build
22
WORKDIR /go/src/github.com/ccatp/authn-proxy
33
COPY . .
44
RUN go get -d -v
55
RUN go test -v
66
RUN CGO_ENABLED=0 GOOS=linux go install -a -v
77

8-
FROM alpine:latest as certs
8+
FROM alpine:latest AS certs
99
RUN apk --update add ca-certificates
1010

1111
FROM scratch

0 commit comments

Comments
 (0)