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