diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..485dee6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea diff --git a/Makefile b/Makefile index 1a1f931..d570323 100644 --- a/Makefile +++ b/Makefile @@ -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} \ No newline at end of file + --destination ${CONTAINER_IMAGE_NAME}:${CONTAINER_IMAGE_TAG} + +all: push-container \ No newline at end of file