FROM debian:stable-slim ARG MAINTAINER MAINTAINER ${MAINTAINER} RUN echo 'export http_proxy=$(ip route show default | cut -d' ' -f3):3142' >> /etc/profile ARG BUILDDEPS RUN apt-get update && \ apt-get --yes upgrade && \ apt-get --yes install ${BUILDDEPS} ENTRYPOINT ["/bin/bash", "-c", "#(noop)"]