Skip to content

Commit 53d39ba

Browse files
committed
Fix Dockerfile to pick up the latest changes to the Makefile
1 parent cf2b43d commit 53d39ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ COPY . /gatewayd
1212

1313
RUN apk --no-cache add git make
1414
RUN mkdir -p dist
15-
RUN make build-${TARGETOS}-${TARGETARCH}
15+
RUN 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.
1818
FROM alpine:3.18 as runner

0 commit comments

Comments
 (0)