Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -2,6 +2,7 @@ FROM golang:1.21-alpine AS builder
|
|
2 |
WORKDIR /app
|
3 |
RUN apk add git make && git clone https://github.com/reccea/chatgpt-adapter.git .
|
4 |
RUN make build-linux
|
|
|
5 |
# 编译代理服务器
|
6 |
COPY proxy.go .
|
7 |
RUN go build -o proxy proxy.go
|
|
|
2 |
WORKDIR /app
|
3 |
RUN apk add git make && git clone https://github.com/reccea/chatgpt-adapter.git .
|
4 |
RUN make build-linux
|
5 |
+
|
6 |
# 编译代理服务器
|
7 |
COPY proxy.go .
|
8 |
RUN go build -o proxy proxy.go
|