Du kannst nicht mehr als 25 Themen auswählen
Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
| 123456789101112 |
- FROM debian:stable-slim
-
- RUN apt-get update && \
- apt-get --yes upgrade && \
- apt-get --yes install iproute2 ; \
- echo 'export http_proxy=http://$(ip route list exact 0.0.0.0/0 | head -1 | cut -d" " -f3):3142/' >> /etc/profile ; \
- . /etc/profile
-
- ARG BUILDDEPS
- RUN apt-get --yes install build-essential ca-certificates curl git ${BUILDDEPS}
-
- CMD ["bash"]
|