jokyone commited on
Commit
16cc620
·
verified ·
1 Parent(s): d70375e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -9
Dockerfile CHANGED
@@ -12,16 +12,10 @@ COPY . /app
12
  #RUN ls -al /
13
  #RUN ls -al ./
14
 
15
- # 更新软件源
16
- RUN apt-get update
17
 
18
- # 安装Node.js
19
- RUN apt-get install -y nodejs
20
-
21
- # 安装npm
22
- RUN apt-get install -y npm
23
-
24
- RUN apk-get install curl wget supervisor git python3-flask
25
 
26
  RUN git clone https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git && \
27
  cd ChatGPT-Next-Web && \
 
12
  #RUN ls -al /
13
  #RUN ls -al ./
14
 
15
+ # 安装Node.js和npm
16
+ RUN apk add --update nodejs npm
17
 
18
+ RUN apk add curl wget supervisor git py3-flask
 
 
 
 
 
 
19
 
20
  RUN git clone https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git && \
21
  cd ChatGPT-Next-Web && \