From bf93e15f590e86c4b24a0344a3e8ef98aa4f033d Mon Sep 17 00:00:00 2001 From: Christian Krakau-Louis Date: Tue, 18 Feb 2025 15:30:13 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 31e095c..0fa7291 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app COPY . . # Build the binary. -RUN CGO_ENABLED=0 go build -o dynamic_dns_server . +RUN CGO_ENABLED=0 go build -o dynamic_mitm_server . # Final minimal image. FROM alpine:latest @@ -15,11 +15,11 @@ FROM alpine:latest WORKDIR /root/ # Copy the binary and the ssl & webroot directories. -COPY --from=builder /app/dynamic_dns_server . +COPY --from=builder /app/dynamic_mitm_server . COPY --from=builder /app/ssl ./ssl COPY --from=builder /app/webroot ./webroot # Expose the port (default 443). EXPOSE 443 -ENTRYPOINT ["./dynamic_dns_server"] +ENTRYPOINT ["./dynamic_mitm_server"]