You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678910111213141516 |
- FROM debian:stable-slim as builder # define builder target
-
- # Environment PATH HOME HOSTNAME
- # ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
- # ENV HOME /
-
- # Prepare build dependencies and clean up
- ARG BUILD_DEPS
- RUN apt-get -q update && \
- DEBIAN_FRONTEND=noninteractive apt-get -qy upgrade && \
- DEBIAN_FRONTEND=noninteractive apt-get -qy install --no-install-recommends ${BUILD_DEPS} \
- build-essential ca-certificates curl git iproute2 wget && \
- apt-get clean && rm -rf /var/lib/apt/lists/*
-
- # Default command
- CMD ["bash"]
|