molmass / Dockerfile
ghh1125's picture
Upload 14 files
c5fe37e verified
raw
history blame contribute delete
399 Bytes
FROM python:3.11-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
MCP_TRANSPORT=http \
MCP_PORT=7860
WORKDIR /app
RUN useradd -m -u 1000 appuser
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt
COPY molmass /app/molmass
COPY app.py /app/app.py
USER appuser
EXPOSE 7860
CMD ["python", "molmass/mcp_output/start_mcp.py"]