initial commit
This commit is contained in:
commit
4da84c395c
3
.dockerignore
Normal file
3
.dockerignore
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
.dockerignore
|
||||||
|
Dockerfile
|
||||||
|
build.sh
|
7
Dockerfile
Normal file
7
Dockerfile
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
FROM debian:12-slim as build
|
||||||
|
ADD https://github.com/DNSCrypt/doh-server/releases/download/0.9.9/doh-proxy_0.9.9_amd64.deb doh-proxy.deb
|
||||||
|
RUN apt install ./doh-proxy.deb
|
||||||
|
|
||||||
|
FROM scratch
|
||||||
|
COPY --from=build /usr/bin/doh-proxy /doh-proxy
|
||||||
|
CMD /doh-proxy
|
Loading…
Reference in a new issue