mnemo-mcp / Dockerfile
AthelaPerk's picture
Fix: Update Dockerfile for gunicorn
dce3c78 verified
raw
history blame contribute delete
197 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY server.py .
EXPOSE 7860
CMD ["gunicorn", "-b", "0.0.0.0:7860", "server:app"]