summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2019-02-14 23:28:25 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2019-02-14 23:28:25 -0500
commitcf3d348296e4768cc0ec517f9bc2162f02eadd3c (patch)
treeaf443911fe012a5ebf99c0f55379ce6da6958932 /Dockerfile
parentb0fa760126571f7fd22e1dfa7ee641b195639efc (diff)
downloaddocker-python-cf3d348296e4768cc0ec517f9bc2162f02eadd3c.tar.gz
Refactor build/publish
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 55a4ee0..bccb66e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,6 @@
-ARG BASE_VERSION=${BASE_VERSION:latest-}
-FROM astroconda/base:${BASE_VERSION}
+ARG HUB=${HUB:-astroconda}
+ARG BASE_VERSION=${BASE_VERSION:-latest}
+FROM ${HUB}/base:${BASE_VERSION}
LABEL maintainer="jhunk@stsci.edu" \
vendor="Space Telescope Science Institute"