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 33ca9b1 commit 3090c58Copy full SHA for 3090c58
Dockerfile
@@ -1,7 +1,7 @@
1
# syntax=docker/dockerfile:1
2
3
# Use the official golang image to build the binary.
4
-FROM golang:1.23-alpine3.20 as builder
+FROM golang:1.23-alpine3.20 AS builder
5
6
ARG TARGETOS
7
ARG TARGETARCH
@@ -15,7 +15,7 @@ RUN apk --no-cache add git=2.45.2-r0 make=4.4.1-r2 && \
15
make build-platform GOOS=${TARGETOS} GOARCH=${TARGETARCH} OUTPUT_DIR=dist/${TARGETOS}-${TARGETARCH}
16
17
# Use alpine to create a minimal image to run the gatewayd binary.
18
-FROM alpine:3.20 as runner
+FROM alpine:3.20 AS runner
19
20
21
0 commit comments