Spaces:
Running
Running
File size: 343 Bytes
0cdac39 |
1 2 3 4 5 6 7 8 9 |
FROM python:3.12
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY alphagenome_mcp.py .
COPY tools/ tools/
RUN mkdir -p /app/data/upload /data/tmp_inputs /data/tmp_outputs && chmod -R 777 /app/data/upload /data
EXPOSE 7860
CMD ["uvicorn", "alphagenome_mcp:app", "--host", "0.0.0.0", "--port", "7860"] |