Fix apt proxy in Docker

This commit is contained in:
bandesz
2016-12-20 11:03:25 +00:00
parent ab1326b97e
commit 31b2c3f402

View File

@@ -9,7 +9,7 @@ ENV PYTHONUNBUFFERED=1 \
RUN \
echo "Install base packages" \
&& ([ -z "$HTTP_PROXY" ] || echo "Acquire::http::Proxy \"${HTTP_PROXY}\";\n" > /etc/apt/apt.conf.d/99HttpProxy) \
&& ([ -z "$HTTP_PROXY" ] || echo "Acquire::http::Proxy \"${HTTP_PROXY}\";" > /etc/apt/apt.conf.d/99HttpProxy) \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
make \