Spaces:
rjlnx
/
Running

jl2 / Dockerfile
ykl45's picture
Update Dockerfile
fbb9692 verified
raw
history blame contribute delete
No virus
247 Bytes
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"]