Tok1 / Dockerfile
Neon-tech's picture
Create Dockerfile
ba3f1fd verified
raw
history blame contribute delete
202 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir \
tokenizers \
pandas \
pyarrow \
huggingface_hub \
requests
COPY app.py .
EXPOSE 7860
CMD ["python", "app.py"]