Skip to content

Commit

Permalink
Fix Dockerfile to pick up the latest changes to the Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafa committed Apr 10, 2024
1 parent cf2b43d commit 53d39ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ COPY . /gatewayd

RUN apk --no-cache add git make
RUN mkdir -p dist
RUN make build-${TARGETOS}-${TARGETARCH}
RUN 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.18 as runner
Expand Down

0 comments on commit 53d39ba

Please sign in to comment.