oop-deploy / Dockerfile
E-Hospital's picture
Update Dockerfile
2ee651b
raw
history blame
634 Bytes
FROM nvidia/cuda:11.1.1-cudnn8-runtime-ubuntu20.04
# Set up your working directory
WORKDIR /code
# Install any other dependencies you need
# For example, let's say you want to install Python and pip
RUN apt-get update && \
apt-get install -y python3 python3-pip
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
ENV CUDA_VISIBLE_DEVICES=0,1,2
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]