1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/tftpd/Dockerfile

16 lines
275 B
Docker
Raw Normal View History

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