mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-12 11:15:04 +02:00
14 lines
271 B
Docker
14 lines
271 B
Docker
#
|
|
# Dockerfile for tftpd-arm
|
|
#
|
|
|
|
FROM easypi/alpine-arm
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN apk add --no-cache tftp-hpa
|
|
VOLUME /tftpboot
|
|
EXPOSE 69/udp
|
|
|
|
ENTRYPOINT ["in.tftpd"]
|
|
CMD ["--verbose", "--foreground", "--secure", "--create", "--user", "root", "/tftpboot"]
|