File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# build app
2
- FROM golang:1.21.3 -alpine3.18 AS app-builder
2
+ FROM golang:1.23 -alpine3.20 AS app-builder
3
3
4
4
ARG VERSION=dev
5
5
ARG REVISION=dev
@@ -21,7 +21,7 @@ COPY . ./
21
21
RUN go build -ldflags "-s -w -X main.version=${VERSION} -X main.commit=${REVISION} -X main.date=${BUILDTIME}" -o bin/shinkro cmd/shinkro/main.go
22
22
23
23
# build runner
24
- FROM alpine:3.18
24
+ FROM alpine:latest
25
25
26
26
LABEL org.opencontainers.image.source="https://github.com/varoOP/shinkro"
27
27
Original file line number Diff line number Diff line change 1
1
# build app
2
- FROM --platform=$BUILDPLATFORM golang:1.21.3 -alpine3.18 AS app-builder
2
+ FROM --platform=$BUILDPLATFORM golang:1.23 -alpine3.20 AS app-builder
3
3
4
4
RUN apk add --no-cache git tzdata
5
5
@@ -20,7 +20,7 @@ RUN --mount=target=. \
20
20
GOOS="$TARGETOS" GOARCH="$TARGETARCH" go build -ldflags "-s -w -X main.version=${VERSION} -X main.commit=${REVISION} -X main.date=${BUILDTIME}" -o /out/bin/shinkro cmd/shinkro/main.go
21
21
22
22
# build runner
23
- FROM alpine:3.18
23
+ FROM alpine:latest
24
24
25
25
LABEL org.opencontainers.image.source="https://github.com/varoOP/shinkro"
26
26
You can’t perform that action at this time.
0 commit comments