Skip to content
Snippets Groups Projects
Verified Commit d517183b authored by Martin Weise's avatar Martin Weise
Browse files
parent b494d0c1
No related branches found
No related tags found
No related merge requests found
......@@ -552,6 +552,7 @@ release-images-arm64:
image: docker:${DOCKER_VERSION}-dind
variables:
PLATFORM: linux/arm64
DOCKER_BUILD_EXTRA_ARGS: --quiet --network=host
dependencies:
- clean-images
- test-analyse-service
......
......@@ -2,10 +2,10 @@
.PHONY: build-images
build-images: ## Build Docker images.
docker build --platform=$(PLATFORM) --network=host -t dbrepo-core:build --target build ./lib/java/dbrepo-core
docker build --platform=$(PLATFORM) --network=host -t dbrepo-data-service:build --target build dbrepo-data-service
docker build --platform=$(PLATFORM) --network=host -t dbrepo-metadata-service:build --target build dbrepo-metadata-service
docker compose build --parallel
docker build $(DOCKER_BUILD_EXTRA_ARGS) --platform=$(PLATFORM) -t dbrepo-core:build --target build ./lib/java/dbrepo-core
docker build $(DOCKER_BUILD_EXTRA_ARGS) --platform=$(PLATFORM) -t dbrepo-data-service:build --target build dbrepo-data-service
docker build $(DOCKER_BUILD_EXTRA_ARGS) --platform=$(PLATFORM) -t dbrepo-metadata-service:build --target build dbrepo-metadata-service
docker compose build $(DOCKER_BUILD_EXTRA_ARGS) --platform=$(PLATFORM)
.PHONY: build-data-service
build-data-service: ## Build the Data Service.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment