docker-tftp/Dockerfile
quackerd 81dad65647
All checks were successful
continuous-integration/drone/push Build is passing
Update 'Dockerfile'
2022-08-08 08:17:33 +00:00

11 lines
186 B
Docker

FROM alpine:latest
COPY ./run.sh /opt/run.sh
RUN set -xe \
&& apk add --no-cache tftp-hpa \
&& chmod +x /opt/run.sh
VOLUME ["/var/tftpboot"]
CMD ["/opt/run.sh"]
EXPOSE 69/udp