This commit is contained in:
Sebastian
2025-03-06 08:30:08 +01:00
parent f79919776b
commit c5c6942151

View File

@@ -7,6 +7,9 @@ WORKDIR /app
# Copy the Go files into the container # Copy the Go files into the container
COPY . . COPY . .
# Initialize the Go module
RUN go mod init drpc-beacon-proxy
# Build the Go application # Build the Go application
RUN go build -o proxy-server . RUN go build -o proxy-server .