From 255e1845abe221bff43044a77222d119063edfc3 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 2 May 2024 11:26:39 +0200 Subject: [PATCH] push directly --- .github/workflows/build.yml | 3 +-- Makefile | 6 ------ 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index efca053..1cc5b1b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,6 +28,5 @@ jobs: docker buildx create --use --platform=linux/arm64,linux/amd64 --name multi-platform-builder docker buildx inspect --bootstrap docker buildx install - make DOCKER_BUILDX_FLAGS="--platform linux/amd64,linux/arm64 --load" all + make DOCKER_BUILDX_FLAGS="--platform linux/amd64,linux/arm64 --push" all make test - make push diff --git a/Makefile b/Makefile index 802779a..4ef53d5 100644 --- a/Makefile +++ b/Makefile @@ -48,12 +48,6 @@ python-fips-full: ## Build 'final' image which includes cryptography and xmlsec --build-arg="CRYPTOGRAPHY_VERSION=${CRYPTOGRAPHY_VERSION}" \ --build-arg="DEBIAN_CODENAME=${DEBIAN_CODENAME}" -push: - docker push ${IMAGE_REPO}/${IMAGE_PREFIX}-debian:${DEBIAN_CODENAME}-slim-fips - docker push ${IMAGE_REPO}/${IMAGE_PREFIX}-xmlsec1:${XMLSEC_VERSION}-slim-${DEBIAN_CODENAME}-fips - docker push ${IMAGE_REPO}/${IMAGE_PREFIX}-python:${PYTHON_VERSION}-slim-${DEBIAN_CODENAME}-fips - docker push ${IMAGE_REPO}/${IMAGE_PREFIX}-python:${PYTHON_VERSION}-slim-${DEBIAN_CODENAME}-fips-full - test: # Test that base images has OpenSSL with FIPS enabled docker run -it --rm ${IMAGE_REPO}/${IMAGE_PREFIX}-debian:${DEBIAN_CODENAME}-slim-fips \