mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
14 lines
255 B
Docker
14 lines
255 B
Docker
|
#
|
||
|
# Dockerfile for tftpd
|
||
|
#
|
||
|
|
||
|
FROM alpine
|
||
|
MAINTAINER kev <noreply@easypi.info>
|
||
|
|
||
|
RUN apk add --no-cache tftp-hpa
|
||
|
VOLUME /tftpboot
|
||
|
EXPOSE 69/udp
|
||
|
|
||
|
ENTRYPOINT ["in.tftpd"]
|
||
|
CMD ["--verbose", "--foreground", "--secure", "--create", "--user", "root", "/tftpboot"]
|