Dash-math_Database / Dockerfile
Mochi0622's picture
Update Dockerfile
7fe811b verified
Raw
History Blame Contribute Delete
346 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["gunicorn", "app:server", \
"--bind", "0.0.0.0:7860", \
"--timeout", "120", \
"--workers", "1", \
"--log-level", "debug", \
"--capture-output", \
"--enable-stdio-inheritance"]