Skip to content

Commit f0b7c27

Browse files
committed
fx rebase
1 parent fc2c4b3 commit f0b7c27

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

Makefile

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,24 @@ BASE_IMAGE_OPENJ9=adoptopenjdk/openjdk8-openj9:x86_64-ubuntu-jre8u462-b08_openj9
1313
all: docker_build ## produce the docker image
1414

1515
docker_build: ## build the docker image
16-
docker build --build-arg base_image=$(BASE_IMAGE_OPENJDK) --no-cache -t $(BASE_IMAGE_NAME):$(VERSION) --target base .
17-
docker build --build-arg base_image=$(BASE_IMAGE_OPENJ9) --no-cache -t $(BASE_IMAGE_NAME):$(OPENJ9_VERSION) --target base .
16+
docker build --build-arg base_image=$(BASE_IMAGE_OPENJDK) --no-cache -t $(BASE_IMAGE_NAME):$(VERSION) --target base .
17+
docker build --build-arg base_image=$(BASE_IMAGE_OPENJ9) --no-cache -t $(BASE_IMAGE_NAME):$(OPENJ9_VERSION) --target base .
1818
docker build --build-arg base_image=$(BASE_IMAGE_OPENJDK11) --no-cache -t $(BASE_IMAGE_NAME):$(OPENJDK11_VERSION) --target base .
1919
docker build --build-arg base_image=$(BASE_IMAGE_OPENJDK17) --no-cache -t $(BASE_IMAGE_NAME):$(OPENJDK17_VERSION) --target base .
2020

21-
docker build --build-arg base_image=$(BASE_IMAGE_OPENJDK) --no-cache -t $(WITHTOOLS_IMAGE_NAME):$(VERSION) --target withtools .
22-
docker build --build-arg base_image=$(BASE_IMAGE_OPENJ9) --no-cache -t $(WITHTOOLS_IMAGE_NAME):$(OPENJ9_VERSION) --target withtools .
23-
docker build --build-arg base_image=$(BASE_IMAGE_OPENJDK17) --no-cache -t $(WITHTOOLS_IMAGE_NAME):$(OPENJDK17_VERSION) --target withtools .
21+
docker build --build-arg base_image=$(BASE_IMAGE_OPENJDK) --no-cache -t $(WITHTOOLS_IMAGE_NAME):$(VERSION) --target withtools .
22+
docker build --build-arg base_image=$(BASE_IMAGE_OPENJ9) --no-cache -t $(WITHTOOLS_IMAGE_NAME):$(OPENJ9_VERSION) --target withtools .
2423
docker build --build-arg base_image=$(BASE_IMAGE_OPENJDK11) --no-cache -t $(WITHTOOLS_IMAGE_NAME):$(OPENJDK11_VERSION) --target withtools .
24+
docker build --build-arg base_image=$(BASE_IMAGE_OPENJDK17) --no-cache -t $(WITHTOOLS_IMAGE_NAME):$(OPENJDK17_VERSION) --target withtools .
2525

2626
docker_scan: ## scan docker images using Docker Scout
2727
docker scout quickview $(BASE_IMAGE_NAME):$(VERSION) || true
2828
docker scout quickview $(BASE_IMAGE_NAME):$(OPENJ9_VERSION) || true
29+
docker scout quickview $(BASE_IMAGE_NAME):$(OPENJDK11_VERSION) || true
2930
docker scout quickview $(BASE_IMAGE_NAME):$(OPENJDK17_VERSION) || true
3031
docker scout quickview $(WITHTOOLS_IMAGE_NAME):$(VERSION) || true
3132
docker scout quickview $(WITHTOOLS_IMAGE_NAME):$(OPENJ9_VERSION) || true
33+
docker scout quickview $(WITHTOOLS_IMAGE_NAME):$(OPENJDK11_VERSION) || true
3234
docker scout quickview $(WITHTOOLS_IMAGE_NAME):$(OPENJDK17_VERSION) || true
3335

3436

@@ -41,8 +43,8 @@ push-docker-image: ## push the docker image to the registry (DOCKER_USER and DOC
4143
docker push $(BASE_IMAGE_NAME):$(OPENJDK17_VERSION)
4244
docker push $(WITHTOOLS_IMAGE_NAME):$(VERSION)
4345
docker push $(WITHTOOLS_IMAGE_NAME):$(OPENJ9_VERSION)
44-
docker push $(WITHTOOLS_IMAGE_NAME):$(OPENJDK17_VERSION)
4546
docker push $(WITHTOOLS_IMAGE_NAME):$(OPENJDK11_VERSION)
47+
docker push $(WITHTOOLS_IMAGE_NAME):$(OPENJDK17_VERSION)
4648

4749
.PHONY: push-latest-docker-image
4850
push-latest-docker-image: ## push the docker image with the "latest" tag to the registry (DOCKER_USER and DOCKER_PASS mandatory)

0 commit comments

Comments
 (0)