Skip to content

Commit

Permalink
fix(): update docker build command to include platform specification (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshinexcode authored Jul 29, 2024
1 parent 0c95d55 commit 9c4da5d
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 @@ -30,7 +30,7 @@ clean-agents:

docker-build-playground:
@echo ">> docker build playground"
cd playground && docker build -t $(REGISTRY)$(PROJECT_NAME)_playground:$(PROJECT_VERSION) -f Dockerfile .
cd playground && docker build -t $(REGISTRY)$(PROJECT_NAME)_playground:$(PROJECT_VERSION) --platform linux/amd64 -f Dockerfile .
@echo ">> done"

docker-build-server:
Expand Down

0 comments on commit 9c4da5d

Please sign in to comment.