Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +3 -9
Dockerfile
CHANGED
|
@@ -12,16 +12,10 @@ COPY . /app
|
|
| 12 |
#RUN ls -al /
|
| 13 |
#RUN ls -al ./
|
| 14 |
|
| 15 |
-
#
|
| 16 |
-
RUN
|
| 17 |
|
| 18 |
-
|
| 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 && \
|