summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Dockerfile4
-rw-r--r--Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index 0d45fbc..8d27c13 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
-ARG REGISTRY
-FROM ${REGISTRY}/act4e/act4e-tests:alphubel
+ARG DOCKER_REGISTRY
+FROM ${DOCKER_REGISTRY}/act4e/act4e-tests:alphubel
WORKDIR /ACT4E
diff --git a/Makefile b/Makefile
index cea6e06..598e600 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,11 @@
all:
-REGISTRY ?= reg-z7-prod.zuper.ai
+DOCKER_REGISTRY ?= reg-z7-prod.zuper.ai
tag=mytag
pull:
- docker pull ${REGISTRY}/act4e/act4e-tests:alphubel
+ docker pull ${DOCKER_REGISTRY}/act4e/act4e-tests:alphubel
build: pull
docker build -t $(tag) .