summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2019-02-14 23:29:56 -0500
committerGitHub <noreply@github.com>2019-02-14 23:29:56 -0500
commitaef4801ac3de2a87a32123effa49223082e18aac (patch)
treeaf443911fe012a5ebf99c0f55379ce6da6958932 /Dockerfile
parentb0fa760126571f7fd22e1dfa7ee641b195639efc (diff)
parentcf3d348296e4768cc0ec517f9bc2162f02eadd3c (diff)
downloaddocker-python-aef4801ac3de2a87a32123effa49223082e18aac.tar.gz
Merge pull request #2 from jhunkeler/refactor-build
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"