FROM python:3.11-slim-bullseye #FROM nvidia/cuda:12.3.0-devel-ubuntu22.04 ENV HOME=/home/user \ PATH=/home/user/.local/bin:$PATH \ TF_ENABLE_ONEDNN_OPTS=0 \ CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS" \ HOST=0.0.0.0 \ PORT=7860 \ ORIGINS=* RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends \ python3 \ python3-pip \ ninja-build \ build-essential \ pkg-config \ gnupg2 \ wget WORKDIR /code RUN chmod 777 . RUN pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu COPY ./requirements.txt /code/requirements.txt RUN pip3 install --no-cache-dir --upgrade -r /code/requirements.txt RUN useradd -m -u 1000 user USER user WORKDIR $HOME/app COPY --chown=user . $HOME/app RUN chmod 777 . EXPOSE 7860 CMD ["python", "-m", "main"]