Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
identw committed May 15, 2024
1 parent 68d12cb commit 190443b
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 @@ ARG TARGETPLATFORM
RUN echo "Building BUILDPLATFORM: '${BUILDPLATFORM}', TARGETPLATFORM: '$TARGETPLATFORM'"; \
export GOOS=$(echo $TARGETPLATFORM | cut -d / -f1); \
export GOARCH=$(echo $TARGETPLATFORM | cut -d / -f2); \
if [[ "$GOARCH" = "arm" ]]; then \
if [ "$GOARCH" = "arm" ]; then \
export GOARCH="arm"; \
export GOARM=$(echo $TARGETPLATFORM | cut -d / -f3 | sed 's/v//g'); \
fi; \
Expand Down

0 comments on commit 190443b

Please sign in to comment.