|
|
FROM nvidia/cuda:11.2.2-runtime-ubuntu20.04 |
|
|
|
|
|
RUN apt-get update && apt-get install --no-install-recommends --no-install-suggests -y curl |
|
|
RUN apt-get install unzip |
|
|
RUN apt-get -y install python3 |
|
|
RUN apt-get -y install python3-pip |
|
|
|
|
|
WORKDIR /code |
|
|
|
|
|
ENV HF_HOME=/code/cache |
|
|
|
|
|
COPY ./requirements.txt /code/requirements.txt |
|
|
|
|
|
RUN pip3 install torch==1.10.1+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html |
|
|
RUN pip3 install --no-cache-dir --upgrade -r /code/requirements.txt |
|
|
|
|
|
COPY ./main.py /code/app/main.py |
|
|
|
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8080"] |
|
|
|