Initial commit

This commit is contained in:
2020-05-24 10:39:15 +02:00
commit 96d3cf1797
3 changed files with 49 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM alpine:3
RUN apk add openntpd && mkdir -m 1777 /var/empty/tmp
COPY ./ntpd.conf /etc/ntpd.conf
EXPOSE 123/udp
ENTRYPOINT ["/usr/sbin/ntpd", "-d", "-f", "/etc/ntpd.conf"]