From 32e6ce60136fc24ee41259f158793142318209f1 Mon Sep 17 00:00:00 2001 From: Eric Schoville <eric@schoville.com> Date: Fri, 17 Jan 2020 11:31:11 -0600 Subject: [PATCH] Add POD and REGION as ARGS and set to environment variables. --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index da3a0a0..dbb4503 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,8 +9,10 @@ MAINTAINER Eric Schoville <> # The values for POD and REGION probably need changing for you. Setting these as # default for UW-Madison hosted service -ENV POD=usw3 -ENV REGION=dm-us +ARG POD=usw3 +ARG REGION=dm-us +ENV POD=$POD +ENV REGION=$REGION # You should be able to download the Secure Agent binary from the following URL without authentication: -- GitLab