SoftwareResearch/g2dm-research
0
1FROM python:3.11-slim2 3WORKDIR /app4COPY requirements.txt .5RUN pip install --no-cache-dir -r requirements.txt6COPY . .7 8ENV PORT=78609EXPOSE 786010 11# Server tuning lives in gunicorn.conf.py (shared with local + other hosts).12CMD ["gunicorn", "-c", "gunicorn.conf.py", "app:app"]13 