We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2de7099 commit ecc0736Copy full SHA for ecc0736
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM golang:1.17-alpine as builder
+FROM golang:1.20-alpine as builder
2
3
ADD . /src
4
WORKDIR /src
@@ -10,7 +10,7 @@ ENV CGO_ENABLED=0
10
RUN go build -a -mod vendor -o exo \
11
-ldflags "-s -w -X main.version=${VERSION} -X main.commit=${VCS_REF}"
12
13
-FROM alpine:3.12
+FROM alpine:3.18
14
15
WORKDIR /
16
Dockerfile.goreleaser
@@ -1,7 +1,7 @@
# This Dockerfile variant is for usage with GoReleaser, which reuses the binaries
# compiled in configured builds instead of re-compiling it in a container.
-FROM alpine:3.12 as ca-certificates
+FROM alpine:3.18 as ca-certificates
5
RUN apk update && apk add --no-cache ca-certificates
6
COPY exo /
7
0 commit comments