File size: 279 Bytes
ad9919b 3f39f30 ad9919b 911ae10 | 1 2 3 4 5 6 7 8 9 10 11 12 | FROM python:3.11-slim
RUN apt-get update && apt-get install -y wget && rm -rf /var/lib/apt/lists/*
WORKDIR /app
RUN pip install --no-cache-dir \
tokenizers \
pandas \
pyarrow \
huggingface_hub \
requests
COPY app.py .
EXPOSE 7860
CMD ["python", "app.py"] |