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