Files
enginex-c_series-vl/Dockerfile

12 lines
347 B
Docker
Raw Permalink Normal View History

2025-11-01 12:06:09 +08:00
FROM git.modelhub.org.cn:9443/enginex-metax/maca-c500-pytorch:2.33.0.6-torch2.6-py310-ubuntu24.04-amd64
2025-09-19 14:46:59 +08:00
2025-11-01 12:06:09 +08:00
WORKDIR /app
2025-09-19 14:46:59 +08:00
2025-11-01 12:06:09 +08:00
RUN /opt/conda/bin/pip install transformers==4.46.3 einops addict easydict modelscope uvicorn fastapi
2025-09-19 14:46:59 +08:00
2025-11-01 12:06:09 +08:00
COPY app.py .
2025-09-19 14:46:59 +08:00
2025-11-01 12:06:09 +08:00
ENTRYPOINT []
2025-09-19 14:46:59 +08:00
2025-11-01 12:06:09 +08:00
CMD ["/opt/conda/bin/python", "-m", "uvicorn", "app:app", "--host", "0.0.0.0", "--port", "80"]