aboutsummaryrefslogtreecommitdiff
path: root/mission/hst
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2024-08-09 08:47:37 -0400
committerGitHub <noreply@github.com>2024-08-09 08:47:37 -0400
commitdd2768ddcd61172cc58311fa51138281144397ae (patch)
treebd4b7aceac3d84f78637d0119f3659950cbfe6b6 /mission/hst
parentc9b73913d4e4cc1eae2f54ba70c0d866a749e3af (diff)
downloadstasis-dd2768ddcd61172cc58311fa51138281144397ae.tar.gz
Fix Dockerfile ADD (#22)
* Destination directories were not created properly * This ensures $HOME/packages/{conda,wheels} are created in the docker developer home directory
Diffstat (limited to 'mission/hst')
-rw-r--r--mission/hst/Dockerfile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/mission/hst/Dockerfile.in b/mission/hst/Dockerfile.in
index 2b3827c..360fee6 100644
--- a/mission/hst/Dockerfile.in
+++ b/mission/hst/Dockerfile.in
@@ -61,7 +61,8 @@ RUN curl -q -OSsL ${DIST_URL}/${DIST_INSTALLER} \
ENV PATH="${DIST_PATH}/bin:${PATH}"
# Get delivery snapshot
ADD ${SNAPSHOT_INPUT} ${HOME}/SNAPSHOT.yml
-ADD ${SNAPSHOT_PKGDIR}/conda ${SNAPSHOT_PKGDIR}/wheels ${HOME}/packages
+ADD ${SNAPSHOT_PKGDIR}/conda ${HOME}/packages/conda
+ADD ${SNAPSHOT_PKGDIR}/wheels ${HOME}/packages/wheels
RUN chown -R developer: ${HOME}
USER developer
RUN conda config --set auto_update_conda false \