From 46e7812b1e8ae26a811c92727f2c2d15715fbd60 Mon Sep 17 00:00:00 2001 From: "Douglas Cerna (Soy Douglas)" Date: Fri, 5 Jul 2024 21:36:42 +0000 Subject: [PATCH] Update ENV instructions in Dockerfile The old syntax is now discouraged. See https://docs.docker.com/engine/deprecated/#dockerfile-legacy-env-name-value-syntax --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 143ab27..25e0835 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,9 +23,9 @@ RUN set -ex \ && rm -rf /var/lib/apt/lists/* /var/cache/apt/* RUN locale-gen en_US.UTF-8 -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en -ENV LC_ALL en_US.UTF-8 +ENV LANG=en_US.UTF-8 +ENV LANGUAGE=en_US:en +ENV LC_ALL=en_US.UTF-8 ENV PYENV_ROOT=${PYENV_DIR}/data ENV PATH=$PYENV_ROOT/shims:$PYENV_ROOT/bin:${SELENIUM_DIR}/bin:$PATH