[CI] use key=value form for Dockerfile ENV statements (#10685)

This commit is contained in:
James Lamb
2024-08-09 08:12:50 -05:00
committed by GitHub
parent e02b376bf7
commit fb9201abae
16 changed files with 24 additions and 24 deletions

View File

@@ -8,7 +8,7 @@ ARG RAPIDS_VERSION_ARG
ARG NCCL_VERSION_ARG
# Environment
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive
SHELL ["/bin/bash", "-c"] # Use Bash as shell
# Install all basic requirements
@@ -36,8 +36,8 @@ RUN \
mamba clean --all --yes && \
conda run --no-capture-output -n gpu_test pip install buildkite-test-collector
ENV GOSU_VERSION 1.10
ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64/
ENV GOSU_VERSION=1.10
ENV JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/
# Install lightweight sudo (not bound to TTY)
RUN set -ex; \