Initial euclide.org release

This commit is contained in:
2023-11-17 06:55:06 +01:00
commit 97379c8e8a
210 changed files with 32403 additions and 0 deletions

10
Dockerfile.multistage Normal file
View File

@@ -0,0 +1,10 @@
# build stage
FROM golang:1.12 AS build-env
ADD . /pdns-auth-proxy
RUN cd /pdns-auth-proxy && make build
# final stage
FROM alpine
WORKDIR /app
COPY --from=build-env /pdns-auth-proxy/pdns-auth-proxy /pdns-auth-proxy/
ENTRYPOINT /pdns-auth-proxy/pdns-auth-proxy /pdns-auth-proxy/proxy.ini