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.

13 lines
246 B

4 years ago
4 years ago
4 years ago
  1. FROM debian:buster-slim
  2. LABEL maintainer="Drew Short <warrick@sothr.com>"
  3. RUN apt-get -y update \
  4. && apt-get -y --no-install-recommends install \
  5. bash \
  6. bsdmainutils \
  7. jq \
  8. util-linux \
  9. && rm -Rf /var/lib/apt/lists/*
  10. WORKDIR /root