From abdc5883c5eb72e0da86564142be40301382aed0 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 8 Aug 2024 12:17:27 -0400 Subject: Only add conda packages and wheels to the image * docker images are saved to the packages directory and will be consumed by the image if present. --- mission/generic/Dockerfile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mission/generic/Dockerfile.in') diff --git a/mission/generic/Dockerfile.in b/mission/generic/Dockerfile.in index c3c826a..2b3827c 100644 --- a/mission/generic/Dockerfile.in +++ b/mission/generic/Dockerfile.in @@ -61,7 +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} ${HOME}/packages +ADD ${SNAPSHOT_PKGDIR}/conda ${SNAPSHOT_PKGDIR}/wheels ${HOME}/packages RUN chown -R developer: ${HOME} USER developer RUN conda config --set auto_update_conda false \ -- cgit