CoolFace
Apppublic

SoftwareResearch/g2dm-research

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
Dockerfile13 linesDownload Raw Back to root
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