From c5c6942151372f422e2f58c74b1b94a3b7af75fa Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Thu, 6 Mar 2025 08:30:08 +0100 Subject: [PATCH] fix --- drpc-beacon-proxy/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drpc-beacon-proxy/Dockerfile b/drpc-beacon-proxy/Dockerfile index b548d549..8b89d6f4 100644 --- a/drpc-beacon-proxy/Dockerfile +++ b/drpc-beacon-proxy/Dockerfile @@ -7,6 +7,9 @@ WORKDIR /app # Copy the Go files into the container COPY . . +# Initialize the Go module +RUN go mod init drpc-beacon-proxy + # Build the Go application RUN go build -o proxy-server .