1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-22 05:09:36 +02:00
dockerfiles/tftpd/Dockerfile

16 lines
275 B
Docker
Raw Normal View History

2016-11-02 17:23:46 +08:00
#
# Dockerfile for tftpd
#
2023-06-29 14:13:55 +08:00
FROM alpine:3
MAINTAINER EasyPi Software Foundation
2016-11-02 17:23:46 +08:00
RUN apk add --no-cache tftp-hpa
2023-06-29 14:13:55 +08:00
WORKDIR /data
VOLUME /data
2016-11-02 17:23:46 +08:00
EXPOSE 69/udp
ENTRYPOINT ["in.tftpd"]
2023-06-29 16:34:49 +08:00
CMD ["--verbose", "--foreground", "--ipv4", "--secure", "--create", "--user", "root", "/data"]