Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
rbanffy committed Nov 12, 2024
1 parent c6c514d commit aadec47
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,22 @@ help: ## Displays this message.
@python3 -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)

build_amd64: ## Builds the Docker image for amd64
docker build -t ${USER}/altair-mpm:${IMAGE_TAG}-amd64 --platform=linux/amd64 --file ./Dockerfile --progress plain .
docker build -t ${USER}/altair-mpm:${IMAGE_TAG}-amd64 --provenance false --platform=linux/amd64 --file ./Dockerfile --progress plain .

build_arm64: ## Builds the Docker image for arm64
docker build -t ${USER}/altair-mpm:${IMAGE_TAG}-arm64 --platform=linux/arm64 --file ./Dockerfile --progress plain .
docker build -t ${USER}/altair-mpm:${IMAGE_TAG}-arm64 --provenance false --platform=linux/arm64 --file ./Dockerfile --progress plain .

build_armv6: ## Builds the Docker image for armv6
docker build -t ${USER}/altair-mpm:${IMAGE_TAG}-armv6 --platform=linux/arm/v6 --file ./Dockerfile --progress plain .
docker build -t ${USER}/altair-mpm:${IMAGE_TAG}-armv6 --provenance false --platform=linux/arm/v6 --file ./Dockerfile --progress plain .

build_armv7: ## Builds the Docker image for armv7
docker build -t ${USER}/altair-mpm:${IMAGE_TAG}-armv7 --platform=linux/arm/v7 --file ./Dockerfile --progress plain .
docker build -t ${USER}/altair-mpm:${IMAGE_TAG}-armv7 --provenance false --platform=linux/arm/v7 --file ./Dockerfile --progress plain .

build_ppc64le: ## Builds the Docker image for ppc64le
docker build -t ${USER}/altair-mpm:${IMAGE_TAG}-ppc64le --platform=linux/ppc64le --file ./Dockerfile --progress plain .
docker build -t ${USER}/altair-mpm:${IMAGE_TAG}-ppc64le --provenance false --platform=linux/ppc64le --file ./Dockerfile --progress plain .

build_s390x: ## Builds the Docker image for s390x
docker build -t ${USER}/altair-mpm:${IMAGE_TAG}-s390x --platform=linux/s390x --file ./Dockerfile --progress plain .
docker build -t ${USER}/altair-mpm:${IMAGE_TAG}-s390x --provenance false --platform=linux/s390x --file ./Dockerfile --progress plain .

build: build_amd64 build_arm64 build_armv6 build_armv7 build_ppc64le build_s390x ## Builds the Docker images

Expand Down

0 comments on commit aadec47

Please sign in to comment.