1
0
mirror of https://github.com/taigrr/godns synced 2025-01-18 04:03:25 -08:00

Add docker file to build godns docker image

This commit is contained in:
Timothy 2016-07-01 12:03:37 +08:00
parent 4a32248172
commit 6f94e96ab6

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM alpine:latest
MAINTAINER Timothy
RUN apk add --update ca-certificates
RUN mkdir -p /usr/local/godns
COPY godns /usr/local/godns
RUN chmod +x /usr/local/godns/godns
WORKDIR /usr/local/godns
ENTRYPOINT ["./godns", "-d"]