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
348 B

  1. FROM docker.0k.io/debian:jessie
  2. RUN apt-get update && \
  3. DEBIAN_FRONTEND=noninteractive apt-get install -y cron moreutils && \
  4. apt-get clean && \
  5. rm -rf /var/lib/apt/lists/*
  6. COPY ./src/usr/bin/lock /usr/bin/lock
  7. COPY ./src/usr/bin/docker-17.06.2-ce /usr/bin/docker
  8. COPY ./entrypoint.sh /entrypoint.sh
  9. ENTRYPOINT [ "/entrypoint.sh" ]