From ab139085caafd9c7c2b18c852a71730fee58f991 Mon Sep 17 00:00:00 2001 From: Troy Dai Date: Thu, 28 Nov 2024 20:58:39 -0800 Subject: [PATCH] Load debugging tools --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2c9c752..322fe2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN go build -o /app/main main.go FROM alpine:latest # Install dumb-init -RUN apk --no-cache add dumb-init +RUN apk --no-cache add dumb-init tcpdump curl bind-tools # Set the working directory inside the container WORKDIR /app @@ -33,4 +33,4 @@ EXPOSE 8080 ENTRYPOINT ["/usr/bin/dumb-init", "--"] # Command to run the Go application -CMD ["/app/main"] \ No newline at end of file +CMD ["/app/main"]