Spaces:
Running
Running
File size: 205 Bytes
f1e8369 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir aiohttp httpx huggingface_hub
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
EXPOSE 7860
ENTRYPOINT ["/entrypoint.sh"]
|