Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -2,7 +2,9 @@ FROM python:3.11
|
|
| 2 |
RUN apt update
|
| 3 |
RUN apt install git
|
| 4 |
RUN git clone https://github.com/lanqian528/chat2api.git /app
|
| 5 |
-
|
|
|
|
|
|
|
| 6 |
RUN mkdir -p /app/data
|
| 7 |
RUN chmod -R 777 /app/data
|
| 8 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
| 2 |
RUN apt update
|
| 3 |
RUN apt install git
|
| 4 |
RUN git clone https://github.com/lanqian528/chat2api.git /app
|
| 5 |
+
|
| 6 |
+
WORKDIR /app
|
| 7 |
+
|
| 8 |
RUN mkdir -p /app/data
|
| 9 |
RUN chmod -R 777 /app/data
|
| 10 |
RUN pip install --no-cache-dir -r requirements.txt
|