File size: 720 Bytes
51b3ce0
 
 
 
b771707
8ae8cfa
b771707
51b3ce0
 
d74fdf2
51b3ce0
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 && ls -al /go/pkg/mod
RUN sed -s 'i/ind := strings.Index(path, importPath)/ind := strings.Index(path, importPath)\n    println(path + ", " + importPath)/g' \
  > /go/pkg/mod/github.com/bincooo/[email protected]/internal/module/interface.go
RUN make install
RUN make build-linux
RUN cat /tmp/go_build_gen_works/chatgpt-adapter/relay/hf/container.gen.go

FROM alpine:3.19.0
WORKDIR /app
COPY --from=builder /app/bin/linux/server ./server
RUN chmod +x server

ENV ARG "--port 8080"
CMD ["./server ${ARG}"]
ENTRYPOINT ["sh", "-c"]