This commit is contained in:
Fritz Schaal 2022-01-05 21:04:53 +01:00
parent 79a0e5fa33
commit db428b95ab
2 changed files with 5 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.idea

View File

@ -1,5 +1,5 @@
#! /usr/bin/make
.DEFAULT_GOAL := push-container
.DEFAULT_GOAL := all
CONTAINER_REGISTRY=creg.xfx1.de
CONTAINER_IMAGE_NAME=${CONTAINER_REGISTRY}/python-build-base
@ -23,4 +23,6 @@ push-container:
gcr.io/kaniko-project/executor:latest \
--dockerfile /tmp/Dockerfile \
--context dir:///workspace \
--destination ${CONTAINER_IMAGE_NAME}:${CONTAINER_IMAGE_TAG}
--destination ${CONTAINER_IMAGE_NAME}:${CONTAINER_IMAGE_TAG}
all: push-container