Spaces:
Sleeping
Sleeping
File size: 256 Bytes
3177683 845b7b0 5fb1b5c 3177683 1bc8c61 3177683 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir torch==2.1.0 --index-url https://download.pytorch.org/whl/cpu
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "handler.py"]
|