Add Docker Hub image builds

This commit is contained in:
Eugene Zbiranik
2019-01-29 15:11:11 +03:00
parent 0161509b5f
commit 98bfb82787
7 changed files with 161 additions and 152 deletions

15
Dockerfile.travis Normal file
View File

@@ -0,0 +1,15 @@
FROM alpine:latest
LABEL maintainer="AdGuard Team <devteam@adguard.com>"
# Update CA certs
RUN apk --no-cache --update add ca-certificates && \
rm -rf /var/cache/apk/*
COPY ./AdGuardHome /AdGuardHome
EXPOSE 53 3000
VOLUME /data
ENTRYPOINT ["/AdGuardHome"]
CMD ["-h", "0.0.0.0"]