From 00ee2cec56ba604b24ed7fb9aa922ed6ec205a2c Mon Sep 17 00:00:00 2001 From: Carlos Segarra Date: Mon, 2 Sep 2024 10:41:13 +0000 Subject: [PATCH] docker: fix build warnings --- docker/faabric.dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/faabric.dockerfile b/docker/faabric.dockerfile index e1c842fcc..504c84abd 100644 --- a/docker/faabric.dockerfile +++ b/docker/faabric.dockerfile @@ -5,7 +5,7 @@ ARG FAABRIC_VERSION SHELL ["/bin/bash", "-c"] # Flag to say we're in a container -ENV FAABRIC_DOCKER "on" +ENV FAABRIC_DOCKER="on" # Put the code in place WORKDIR /code @@ -30,7 +30,7 @@ RUN ./bin/create_venv.sh \ RUN echo "set auto-load safe-path /" > /root/.gdbinit # CLI setup -ENV TERM xterm-256color +ENV TERM=xterm-256color RUN echo ". /code/faabric/bin/workon.sh" >> ~/.bashrc CMD ["/bin/bash", "-l"]