12 lines
330 B
Docker
12 lines
330 B
Docker
FROM git.modelhub.org.cn:9443/enginex-iluvatar/bi100-3.2.1-x86-ubuntu20.04-py3.10-poc-llm-infer:v1.2.2
|
|
|
|
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"]
|