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

Update Dockerfile

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