Skip to content

Commit

Permalink
Fix casing
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafa committed Oct 11, 2024
1 parent 33ca9b1 commit 3090c58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

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

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

# Use alpine to create a minimal image to run the gatewayd binary.
FROM alpine:3.20 as runner
FROM alpine:3.20 AS runner

ARG TARGETOS
ARG TARGETARCH
Expand Down

0 comments on commit 3090c58

Please sign in to comment.