1
0
This repository has been archived on 2024-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
chatgpt-to-api/Dockerfile
2023-04-12 11:29:45 +08:00

37 lines
881 B
Docker

# Use the official Golang image as the builder
FROM golang:1.20.3-alpine as builder
# Enable CGO to use C libraries (set to 0 to disable it)
# We set it to 0 to build a fully static binary for our final image
ENV CGO_ENABLED=0
# Set the working directory
WORKDIR /app
# Copy the Go Modules manifests (go.mod and go.sum files)
COPY go.mod go.sum ./
# Download the dependencies
RUN go mod download
# Copy the source code
COPY . .
# Build the Go application and output the binary to /app/ChatGPT-Proxy-V4
RUN go build -o /app/ChatGPT-To-API .
# Use a scratch image as the final distroless image
FROM scratch
# Set the working directory
WORKDIR /app
# Copy the built Go binary from the builder stage
COPY --from=builder /app/ChatGPT-To-API /app/ChatGPT-To-API
# Expose the port where the application is running
EXPOSE 8080
# Start the application
CMD [ "./ChatGPT-To-API" ]