mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:36 +02:00
16 lines
275 B
Docker
16 lines
275 B
Docker
#
|
|
# Dockerfile for tftpd
|
|
#
|
|
|
|
FROM alpine:3
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN apk add --no-cache tftp-hpa
|
|
|
|
WORKDIR /data
|
|
VOLUME /data
|
|
EXPOSE 69/udp
|
|
|
|
ENTRYPOINT ["in.tftpd"]
|
|
CMD ["--verbose", "--foreground", "--ipv4", "--secure", "--create", "--user", "root", "/data"]
|