diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2024-08-20 10:45:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-20 10:45:28 -0400 |
commit | 8cc16bef9d4b8d7d9e36cd135fd6a78a8e8a38cf (patch) | |
tree | 6fc4734d87271916f021041a18dd975f4842b602 /mission/jwst/Dockerfile.in | |
parent | 0eda05963f3c70c3969ddd2aa72926b871ef4b07 (diff) | |
download | stasis-8cc16bef9d4b8d7d9e36cd135fd6a78a8e8a38cf.tar.gz |
Update mission configs (#34)
* Clean package caches (saves about 1GB of layer-space)
* Update installation instructions
* Update layout
* Use template variables where appropriate
* Instructions now provide release notes in one place
* Pandoc now uses --standalone
Diffstat (limited to 'mission/jwst/Dockerfile.in')
-rw-r--r-- | mission/jwst/Dockerfile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mission/jwst/Dockerfile.in b/mission/jwst/Dockerfile.in index c3c826a..705ed81 100644 --- a/mission/jwst/Dockerfile.in +++ b/mission/jwst/Dockerfile.in @@ -72,6 +72,8 @@ RUN sed -i -e "s|@CONDA_CHANNEL@|${HOME}/packages/conda|;s|@PIP_ARGUMENTS@|--ext RUN mamba install \ git \ ${CONDA_PACKAGES} \ - && mamba env create -n linux --file ${HOME}/SNAPSHOT.yml + && mamba env create -n linux --file ${HOME}/SNAPSHOT.yml \ + && conda clean --all \ + && rm -rf ${HOME}/.cache WORKDIR ${HOME} CMD ["/bin/bash"] |