Files
modelscope/docker/Dockerfile.ubuntu.old

8 lines
348 B
Docker
Raw Permalink Normal View History

2026-03-08 09:42:41 +08:00
FROM {base_image}
2026-03-09 13:58:47 +08:00
RUN cd /tmp && GIT_LFS_SKIP_SMUDGE=1 git clone -b {modelscope_branch} --single-branch https://github.com/modelscope/modelscope.git && \
cd modelscope && pip install . -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html && \
cd / && rm -fr /tmp/modelscope && pip cache purge;
2026-03-08 09:42:41 +08:00
SHELL ["/bin/bash", "-c"]