Files

12 lines
330 B
Docker
Raw Permalink Normal View History

2025-08-27 11:13:53 +08:00
FROM git.modelhub.org.cn:9443/enginex-iluvatar/bi100-3.2.1-x86-ubuntu20.04-py3.10-poc-llm-infer:v1.2.2
2025-08-26 19:04:22 +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
2025-08-27 11:13:53 +08:00
CMD ["sh", "-c", "python3 fastapi_translate.py"]