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