hf-llm-api / Dockerfile
Hansimov's picture
:boom: [Fix] pip install setuptools wheel before building pycrypto
c5f3581
raw
history blame
No virus
247 Bytes
FROM python:3.11-slim
WORKDIR $HOME/app
COPY requirements.txt $HOME/app
RUN mkdir /.cache && chmod 777 /.cache
RUN pip install setuptools wheel
RUN pip install -r requirements.txt
COPY . $HOME/app
EXPOSE 23333
CMD ["python", "-m", "apis.chat_api"]