Skip to content

Commit

Permalink
chore: fix docker build command arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
yohamta committed Feb 11, 2025
1 parent 545ff99 commit 36d23aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ LDFLAGS=-X 'main.version=$(BUILD_VERSION)-$(DATE)'
APP_NAME=dagu

# Docker image build configuration
DOCKER_CMD := docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7,linux/arm64/v8 --builder container --build-arg LDFLAGS=$(LDFLAGS) --push --no-cache
DOCKER_CMD := docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7,linux/arm64/v8 --builder container --build-arg LDFLAGS="$(LDFLAGS)" --push --no-cache

# Arguments for the tests
GOTESTSUM_ARGS=--format=standard-quiet
Expand Down

0 comments on commit 36d23aa

Please sign in to comment.