chatuser / Dockerfile
wIK5Ez2o's picture
Update Dockerfile
c482d2c verified
raw
history blame
685 Bytes
FROM golang:1.23-alpine AS builder
WORKDIR /app
RUN apk add git make && git clone https://github.com/bincooo/chatgpt-adapter.git -b v3.0.0-beta .
#RUN go mod tidy \
# && sed -i 's/ind := strings.Index(path, importPath)/ind := strings.Index(path, importPath)\n if ind == -1 {\n return path }\n println(path + ", " + importPath)/g' \
# /go/pkg/mod/github.com/bincooo/[email protected]/internal/module/interface.go
RUN make install
RUN make build-linux
FROM alpine:3.19.0
WORKDIR /app
COPY --from=builder /app/bin/linux/server ./server
ADD config.yaml .
RUN chmod +x server
ENV ARG "--port 7860"
CMD ["./server ${ARG}"]
ENTRYPOINT ["sh", "-c"]