diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-07-31 10:15:47 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-07-31 10:15:47 -0400 |
commit | fc7587b5e55803a711a6b6f6d5a3ee6b29e8adf0 (patch) | |
tree | 061869a8b23f16ecd51a5f80e4a5ce0645ca7dd8 | |
parent | d3a1a8a15a92bfbf16d99529ab1ef7d34b48f37f (diff) | |
download | stasis-fc7587b5e55803a711a6b6f6d5a3ee6b29e8adf0.tar.gz |
Fixes deprecated call to ENV in Dockerfile templatesfix-deprecated-docker-env-declaration
* LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line XY)
-rw-r--r-- | mission/generic/Dockerfile.in | 2 | ||||
-rw-r--r-- | mission/hst/Dockerfile.in | 2 | ||||
-rw-r--r-- | mission/jwst/Dockerfile.in | 2 | ||||
-rw-r--r-- | mission/roman/Dockerfile.in | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/mission/generic/Dockerfile.in b/mission/generic/Dockerfile.in index c360f9b..c3c826a 100644 --- a/mission/generic/Dockerfile.in +++ b/mission/generic/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 diff --git a/mission/hst/Dockerfile.in b/mission/hst/Dockerfile.in index c360f9b..c3c826a 100644 --- a/mission/hst/Dockerfile.in +++ b/mission/hst/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 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 diff --git a/mission/roman/Dockerfile.in b/mission/roman/Dockerfile.in index c360f9b..c3c826a 100644 --- a/mission/roman/Dockerfile.in +++ b/mission/roman/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 |