Image-text-convert / Dockerfile
KZTech's picture
Create Dockerfile
7a704f0 verified
raw
history blame contribute delete
202 Bytes
FROM ghcr.io/huggingface/spaces-sdk:ocr
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY app.py .
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]