diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2024-07-31 10:38:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-31 10:38:14 -0400 |
commit | 202e69c8951a38187489c66e994dd593755d62cb (patch) | |
tree | 061869a8b23f16ecd51a5f80e4a5ce0645ca7dd8 /mission/jwst | |
parent | d3a1a8a15a92bfbf16d99529ab1ef7d34b48f37f (diff) | |
download | stasis-202e69c8951a38187489c66e994dd593755d62cb.tar.gz |
Fixes deprecated call to ENV in Dockerfile templates (#17)
* LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line XY)
Diffstat (limited to 'mission/jwst')
-rw-r--r-- | mission/jwst/Dockerfile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mission/jwst/Dockerfile.in b/mission/jwst/Dockerfile.in index c360f9b..c3c826a 100644 --- a/mission/jwst/Dockerfile.in +++ b/mission/jwst/Dockerfile.in @@ -58,7 +58,7 @@ RUN curl -q -OSsL ${DIST_URL}/${DIST_INSTALLER} \ && echo conda activate linux > /etc/profile.d/zconda.sh \ && chown -R developer: ${OPT} ${HOME} # Configure Conda -ENV PATH "${DIST_PATH}/bin:${PATH}" +ENV PATH="${DIST_PATH}/bin:${PATH}" # Get delivery snapshot ADD ${SNAPSHOT_INPUT} ${HOME}/SNAPSHOT.yml ADD ${SNAPSHOT_PKGDIR} ${HOME}/packages |