Use http proxy for Docker

This commit is contained in:
bandesz
2016-11-30 15:57:20 +00:00
parent 4161c152ab
commit b7d1a10e2d
3 changed files with 19 additions and 1 deletions

View File

@@ -1,11 +1,14 @@
FROM python:3.4-slim
ARG APT_HTTP_PROXY
ENV PYTHONUNBUFFERED=1 \
DEBIAN_FRONTEND=noninteractive \
NODEJS_VERSION=6.3.1-1nodesource1~jessie1
RUN \
echo "Install base packages" \
&& ([ -z "$APT_HTTP_PROXY" ] || echo "Acquire::http::Proxy \"${APT_HTTP_PROXY}\";\n" > /etc/apt/apt.conf.d/99HttpProxy) \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
apt-transport-https \