docker-tftpd/Dockerfile

14 lines
154 B
Docker
Raw Normal View History

2017-07-10 20:59:50 -07:00
FROM ubuntu:xenial
VOLUME /tftp
RUN apt-get update && \
apt-get install -y tftpd-hpa
ADD start /start
RUN chmod +x /start
ENTRYPOINT ["/start"]