From 70d4677e5443f2cbb21705841b149e680a20515b Mon Sep 17 00:00:00 2001 From: Florian Haftmann Date: Tue, 28 Feb 2023 14:23:33 +0100 Subject: [PATCH] refactor: Dropped redundant environment setting With LANG set by ENV pervasively, it would be redundant to set it again for the RUN command line. Change-Id: Ia9f7d4cf81a268a9db238aa3cec1a9c1029f541f --- container/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/container/Dockerfile b/container/Dockerfile index 614d6de..66f8888 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -19,8 +19,7 @@ COPY ./container/start_service.sh /usr/local/bin/start_service.sh COPY ./etc/skyline.yaml.sample /etc/skyline/skyline.yaml COPY ./etc/gunicorn.py /etc/skyline/gunicorn.py -RUN export LANG=C.UTF-8 \ - && apt-get update -y && apt-get install -y --no-install-recommends apt-utils \ +RUN apt-get update -y && apt-get install -y --no-install-recommends apt-utils \ && DEBIAN_FRONTEND=noninteractive apt-get install -y \ gcc make nginx traceroute lsof iputils-ping vim git wget curl locales-all ssl-cert \ python3 python3-pip python3-dev python3-venv \