2025-09-19 10:48:21 +08:00
|
|
|
FROM mlu370-pytorch:v25.01-torch2.5.0-torchmlu1.24.1-ubuntu22.04-py310
|
2025-09-15 14:42:26 +08:00
|
|
|
|
|
|
|
|
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"]
|
|
|
|
|
|