aboutsummaryrefslogtreecommitdiff
path: root/mission/hst
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2024-08-17 11:20:12 -0400
committerGitHub <noreply@github.com>2024-08-17 11:20:12 -0400
commitfa22e7e9ee5b59caea2553fd747b9d46f94f3b5c (patch)
tree42da0ad9aa87829cdedcd0b1173594c82c208388 /mission/hst
parentc069d0da7645eb1e596a53178960149224af8d48 (diff)
downloadstasis-fa22e7e9ee5b59caea2553fd747b9d46f94f3b5c.tar.gz
Undo changes made to Dockerfile.in (#31)
* The packages directory is copied to the build/docker directory. * There is no need to separate these ADD calls.
Diffstat (limited to 'mission/hst')
-rw-r--r--mission/hst/Dockerfile.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/mission/hst/Dockerfile.in b/mission/hst/Dockerfile.in
index 360fee6..c3c826a 100644
--- a/mission/hst/Dockerfile.in
+++ b/mission/hst/Dockerfile.in
@@ -61,8 +61,7 @@ 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 ${HOME}/packages/conda
-ADD ${SNAPSHOT_PKGDIR}/wheels ${HOME}/packages/wheels
+ADD ${SNAPSHOT_PKGDIR} ${HOME}/packages
RUN chown -R developer: ${HOME}
USER developer
RUN conda config --set auto_update_conda false \