translation demo for iluvatar mr

This commit is contained in:
aiyueqi
2025-09-15 11:47:12 +08:00
commit a0e041052c
7 changed files with 609 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM git.modelhub.org.cn:9443/enginex-iluvatar/mr100_corex:4.3.0
WORKDIR /workspace
COPY requirements.txt /workspace
RUN pip install --no-cache-dir -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
ADD . /workspace
EXPOSE 80
CMD ["sh", "-c", "python3 fastapi_translate.py"]