mirror of
https://github.com/m13253/dns-over-https.git
synced 2026-03-30 18:35:38 +00:00
Build separate Docker image for doh-server and doh-client
Make doh-client also listen on both IPv4 and IPv6
This commit is contained in:
21
Dockerfile.client
Normal file
21
Dockerfile.client
Normal file
@@ -0,0 +1,21 @@
|
||||
FROM golang:alpine AS build-env
|
||||
|
||||
WORKDIR /src
|
||||
ADD . /src
|
||||
RUN apk add --no-cache git make
|
||||
RUN make doh-client/doh-client
|
||||
|
||||
FROM alpine:latest
|
||||
|
||||
COPY --from=build-env /src/doh-client/doh-client /doh-client
|
||||
|
||||
ADD doh-client/doh-client.conf /doh-client.conf
|
||||
|
||||
RUN sed -i '$!N;s/"127.0.0.1:53",.*"127.0.0.1:5380",/":53",/;P;D' /doh-client.conf
|
||||
RUN sed -i '$!N;s/"\[::1\]:53",.*"\[::1\]:5380",/":5380",/;P;D' /doh-client.conf
|
||||
|
||||
EXPOSE 53
|
||||
EXPOSE 5380
|
||||
|
||||
ENTRYPOINT ["/doh-client"]
|
||||
CMD ["-conf", "/doh-client.conf"]
|
||||
@@ -3,14 +3,12 @@ FROM golang:alpine AS build-env
|
||||
WORKDIR /src
|
||||
ADD . /src
|
||||
RUN apk add --no-cache git make
|
||||
RUN make
|
||||
RUN make doh-server/doh-server
|
||||
|
||||
FROM alpine:latest
|
||||
|
||||
COPY --from=build-env /src/doh-client/doh-client /doh-client
|
||||
COPY --from=build-env /src/doh-server/doh-server /doh-server
|
||||
|
||||
ADD doh-client/doh-client.conf /doh-client.conf
|
||||
ADD doh-server/doh-server.conf /doh-server.conf
|
||||
|
||||
RUN sed -i '$!N;s/"127.0.0.1:8053",\s*"\[::1\]:8053",/":8053",/;P;D' /doh-server.conf
|
||||
Reference in New Issue
Block a user