From 619d0f77d6f50eb8541cb9b0ab6cc5b8d631db2e Mon Sep 17 00:00:00 2001 From: Antonio Cheong Date: Wed, 12 Apr 2023 10:49:53 +0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2a621ad..e2d7f1f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,8 +17,8 @@ RUN go mod download # Copy the source code COPY . . -# Build the Go application and install it -RUN go install . +# Build the Go application and output the binary to /app/ChatGPT-Proxy-V4 +RUN go build -o /app/ChatGPT-Proxy-V4 . # Use a scratch image as the final distroless image FROM scratch @@ -27,7 +27,7 @@ FROM scratch WORKDIR /app # Copy the built Go binary from the builder stage -COPY --from=builder /go/bin/ChatGPT-Proxy-V4 /app/ChatGPT-Proxy-V4 +COPY --from=builder /app/ChatGPT-Proxy-V4 /app/ChatGPT-Proxy-V4 # Expose the port where the application is running EXPOSE 8080