lfqa1 / lfqa_server /Dockerfile
Achyut Tiwari
Add files via upload
8c7ad44 unverified
raw
history blame
No virus
628 Bytes
FROM nvidia/cuda:11.2.2-runtime-ubuntu20.04
#set up environment
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"]