Spaces:
Runtime error
Runtime error
FROM python:3.9 | |
WORKDIR /home/user/app | |
RUN pip install --upgrade pip | |
RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
COPY . . | |
CMD ["python", "app.py"] | |
#RUN --mount=target=/root/packages.txt,source=packages.txt apt-get update && xargs -r -a /root/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/* | |
#RUN apt-get update && apt-get install -y git git-lfs ffmpeg libsm6 libxext6 cmake libgl1-mesa-glx && rm -rf /var/lib/apt/lists/* && git lfs install | |
#RUN useradd -m -u 1000 user | |
#RUN pip install --no-cache-dir pip==22.3.1 && pip install --no-cache-dir datasets "huggingface-hub>=0.12.1" "protobuf<4" "click<8.1" "pydantic~=1.0" "uvicorn>=0.14.0" | |
#RUN --mount=target=pre-requirements.txt,source=pre-requirements.txt pip install --no-cache-dir -r pre-requirements.txt | |
#RUN --mount=target=requirements.txt,source=requirements.txt pip install --no-cache-dir -r requirements.txt |