Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -3,6 +3,7 @@ RUN apt update
|
|
3 |
RUN apt install git
|
4 |
RUN git clone https://github.com/Hansimov/hf-llm-api.git /app
|
5 |
WORKDIR "/app"
|
|
|
6 |
RUN pip install -r requirements.txt
|
7 |
EXPOSE 23333
|
8 |
CMD ["python", "-m", "apis.chat_api"]
|
|
|
3 |
RUN apt install git
|
4 |
RUN git clone https://github.com/Hansimov/hf-llm-api.git /app
|
5 |
WORKDIR "/app"
|
6 |
+
RUN mkdir /.cache && chmod 777 /.cache
|
7 |
RUN pip install -r requirements.txt
|
8 |
EXPOSE 23333
|
9 |
CMD ["python", "-m", "apis.chat_api"]
|