Spaces:
Running
Running
File size: 331 Bytes
ba6f185 79e7732 ba6f185 79e7732 ba6f185 79e7732 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
git \
&& rm -rf /var/lib/apt/lists/*
COPY server/requirements.txt server/requirements.txt
RUN pip install --no-cache-dir -r server/requirements.txt huggingface_hub
COPY . .
RUN chmod +x start.sh
CMD ["bash", "start.sh"] |