From fa22e7e9ee5b59caea2553fd747b9d46f94f3b5c Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sat, 17 Aug 2024 11:20:12 -0400 Subject: 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. --- mission/hst/Dockerfile.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'mission/hst') 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 \ -- cgit