From dd2768ddcd61172cc58311fa51138281144397ae Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 9 Aug 2024 08:47:37 -0400 Subject: Fix Dockerfile ADD (#22) * Destination directories were not created properly * This ensures $HOME/packages/{conda,wheels} are created in the docker developer home directory --- mission/jwst/Dockerfile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mission/jwst') diff --git a/mission/jwst/Dockerfile.in b/mission/jwst/Dockerfile.in index 2b3827c..360fee6 100644 --- a/mission/jwst/Dockerfile.in +++ b/mission/jwst/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 \ -- cgit