Spaces:
rjlnx
/
Sleeping

File size: 247 Bytes
46125f0
 
 
fbb9692
46125f0
4180d7e
46125f0
 
 
1
2
3
4
5
6
7
8
9
FROM python:3.11
RUN apt update 
RUN apt install git
RUN git clone https://github.com/renqabs/hfa.git /app
WORKDIR "/app"
RUN mkdir /.cache && chmod 777 /.cache
RUN pip install -r requirements.txt
EXPOSE 23333
CMD ["python", "-m", "apis.chat_api"]