Skip to content

Commit 3090c58

Browse files
committed
Fix casing
1 parent 33ca9b1 commit 3090c58

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,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33
# Use the official golang image to build the binary.
4-
FROM golang:1.23-alpine3.20 as builder
4+
FROM golang:1.23-alpine3.20 AS builder
55

66
ARG TARGETOS
77
ARG TARGETARCH
@@ -15,7 +15,7 @@ RUN apk --no-cache add git=2.45.2-r0 make=4.4.1-r2 && \
1515
make build-platform GOOS=${TARGETOS} GOARCH=${TARGETARCH} OUTPUT_DIR=dist/${TARGETOS}-${TARGETARCH}
1616

1717
# Use alpine to create a minimal image to run the gatewayd binary.
18-
FROM alpine:3.20 as runner
18+
FROM alpine:3.20 AS runner
1919

2020
ARG TARGETOS
2121
ARG TARGETARCH

0 commit comments

Comments
 (0)