mirror of
https://github.com/BluemediaGER/homelab.git
synced 2024-11-14 16:35:29 +01:00
7 lines
181 B
Docker
7 lines
181 B
Docker
|
FROM alpine:latest
|
||
|
|
||
|
RUN apk add busybox tftp-hpa
|
||
|
|
||
|
ENTRYPOINT [ "/bin/sh", "-c" ]
|
||
|
|
||
|
CMD [ "busybox syslogd -n -O /dev/stdout & in.tftpd -vvv --foreground --secure /var/lib/tftpboot" ]
|