TinyDoc-VLM / Dockerfile
GautamKishore's picture
Upload folder using huggingface_hub
01c093b verified
Raw
History Blame Contribute Delete
263 Bytes
FROM python:3.11-slim
WORKDIR /app
# Install pip deps
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app code
COPY . .
# Remove build-time files
RUN rm -f requirements.txt Dockerfile app_preload.py
CMD ["python", "app.py"]