BG5 commited on
Commit
8beb0b9
·
verified ·
1 Parent(s): d457e1e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -0
Dockerfile CHANGED
@@ -7,6 +7,21 @@ ENV TZ=Asia/Shanghai
7
  WORKDIR /code
8
  COPY . .
9
  # 安装所需的软件包并清理APT缓存
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  # 下载并执行 install.sh 脚本
11
  RUN wget -O install.sh https://dl.xp.cn/dl/xp/install.sh && \
12
  bash install.sh
 
7
  WORKDIR /code
8
  COPY . .
9
  # 安装所需的软件包并清理APT缓存
10
+ RUN apt-get update && apt-get install -y \
11
+ wget \
12
+ python-is-python3 \
13
+ pip \
14
+ tar \
15
+ unzip \
16
+ zip \
17
+ curl \
18
+ git \
19
+ sudo \
20
+ gosu \
21
+ gnupg \
22
+ util-linux \
23
+ sqlite3 \
24
+ tzdata
25
  # 下载并执行 install.sh 脚本
26
  RUN wget -O install.sh https://dl.xp.cn/dl/xp/install.sh && \
27
  bash install.sh