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.

Dockerfile 499B

12345678910111213141516171819202122232425262728
  1. FROM debian:jessie
  2. MAINTAINER Robin Thoni <robin@rthoni.com>
  3. ARG CONFIG_DIR=/etc/default/config-files/
  4. RUN apt-get update && apt-get -y install\
  5. tftpd-hpa\
  6. xinetd &&\
  7. apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
  8. RUN rm -rf /var/log/*
  9. COPY ./vars-vars /etc/vars-vars
  10. COPY ./vars-files /etc/vars-files
  11. COPY ./common.sh /common.sh
  12. COPY ./run.sh /run.sh
  13. RUN mkdir "${CONFIG_DIR}"
  14. COPY xinetd.tftp.conf "${CONFIG_DIR}"/tftp
  15. EXPOSE 80
  16. CMD ["/run.sh"]