Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -4,4 +4,6 @@ COPY . .
|
|
4 |
RUN pip install -r requirements.txt
|
5 |
VOLUME /data
|
6 |
EXPOSE 23333
|
|
|
|
|
7 |
CMD ["python", "-m", "apis.chat_api"]
|
|
|
4 |
RUN pip install -r requirements.txt
|
5 |
VOLUME /data
|
6 |
EXPOSE 23333
|
7 |
+
RUN mkdir -p /models
|
8 |
+
RUN chmod 777 /models
|
9 |
CMD ["python", "-m", "apis.chat_api"]
|