wIK5Ez2o commited on
Commit
5e91f62
·
verified ·
1 Parent(s): ed96bf1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -3,7 +3,9 @@ FROM golang:1.23-alpine AS builder
3
  # 构建执行文件
4
  WORKDIR /app
5
  RUN apk add git make && git clone https://github.com/bincooo/chatgpt-adapter.git -b v3.0.0-beta .
6
- RUN make
 
 
7
 
8
  FROM alpine:3.19.0
9
  RUN apk add curl
 
3
  # 构建执行文件
4
  WORKDIR /app
5
  RUN apk add git make && git clone https://github.com/bincooo/chatgpt-adapter.git -b v3.0.0-beta .
6
+ RUN make build-linux
7
+ # RUN make build-osx
8
+ # RUN make build-win
9
 
10
  FROM alpine:3.19.0
11
  RUN apk add curl