cheat-sheet-studio / Dockerfile
duqing2026's picture
Fix Jinja2 conflict, add requirements.txt, enrich features (copy/export/import)
8d9af82
Raw
History Blame Contribute Delete
164 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]