michally commited on
Commit
5cd35fe
·
verified ·
1 Parent(s): 684e490

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -6,8 +6,6 @@ ENV GO111MODULE=on \
6
  CGO_ENABLED=0 \
7
  GOOS=linux
8
 
9
- # 设置工作目录
10
- WORKDIR /build
11
 
12
  # 安装 git
13
  RUN apk add --no-cache git
@@ -15,6 +13,10 @@ RUN apk add --no-cache git
15
  # 克隆项目仓库
16
  RUN git clone https://github.com/deanxv/genspark2api.git .
17
 
 
 
 
 
18
  # 复制 go.mod 和 go.sum 文件,先下载依赖
19
  COPY go.mod go.sum ./
20
  #ENV GOPROXY=https://goproxy.cn,direct
 
6
  CGO_ENABLED=0 \
7
  GOOS=linux
8
 
 
 
9
 
10
  # 安装 git
11
  RUN apk add --no-cache git
 
13
  # 克隆项目仓库
14
  RUN git clone https://github.com/deanxv/genspark2api.git .
15
 
16
+ # 设置工作目录
17
+ WORKDIR /build
18
+
19
+
20
  # 复制 go.mod 和 go.sum 文件,先下载依赖
21
  COPY go.mod go.sum ./
22
  #ENV GOPROXY=https://goproxy.cn,direct