diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2019-02-14 23:29:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-14 23:29:56 -0500 |
commit | aef4801ac3de2a87a32123effa49223082e18aac (patch) | |
tree | af443911fe012a5ebf99c0f55379ce6da6958932 /Dockerfile | |
parent | b0fa760126571f7fd22e1dfa7ee641b195639efc (diff) | |
parent | cf3d348296e4768cc0ec517f9bc2162f02eadd3c (diff) | |
download | docker-python-aef4801ac3de2a87a32123effa49223082e18aac.tar.gz |
Merge pull request #2 from jhunkeler/refactor-build
Refactor build/publish
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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" |