Dockerfile.debian 426 B

123456789101112131415161718192021222324
  1. FROM debian:stable
  2. RUN \
  3. echo "**** install dependencies ****" && \
  4. apt update -y && \
  5. apt install -y --no-install-recommends \
  6. iproute2 \
  7. iputils-ping \
  8. iptables \
  9. ifupdown \
  10. net-tools \
  11. openresolv \
  12. mtr \
  13. ssh \
  14. wireguard-tools && \
  15. echo "**** clean up ****" && \
  16. rm -rf \
  17. /tmp/* \
  18. /var/lib/apt/lists/* \
  19. /var/tmp/*
  20. COPY ./entrypoint.sh /entrypoint.sh
  21. ENTRYPOINT ["/entrypoint.sh"]