Remove platform flag

This commit is contained in:
ViViDboarder 2018-08-12 17:30:53 -07:00
parent df2b1761b8
commit c67f505450
1 changed files with 2 additions and 2 deletions

View File

@ -8,11 +8,11 @@ test: test-x86
.PHONY: build-x86
build-x86:
docker build -f ./Dockerfile -t $(DOCKER_TAG) --platform linux .
docker build -f ./Dockerfile -t $(DOCKER_TAG) .
.PHONY: build-arm
build-arm:
docker build -f ./Dockerfile -t $(DOCKER_TAG) --platform arm .
docker build -f ./Dockerfile -t $(DOCKER_TAG) .
.PHONY: build-all
build-all: build-x86 build-arm