omniparse-ai / Dockerfile
simikkk's picture
Upload 4 files
ce63c91 verified
Raw
History Blame Contribute Delete
263 Bytes
FROM python:3.12-slim
WORKDIR /app
COPY . /app
# Install only the pinned dependencies – no extra gradio version
RUN pip install --no-cache-dir -r requirements.txt \
&& pip install --no-cache-dir "gradio[mcp]==4.31.5"
EXPOSE 7860
CMD ["python", "app.py"]