rgres commited on
Commit
3563268
·
1 Parent(s): 4ac3760

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -1,6 +1,8 @@
1
  FROM python:3.9
2
  WORKDIR /app
3
 
 
 
4
  COPY ./requirements.txt /app/requirements.txt
5
  RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
6
 
 
1
  FROM python:3.9
2
  WORKDIR /app
3
 
4
+ RUN apt-get install nvidia-container-runtime
5
+
6
  COPY ./requirements.txt /app/requirements.txt
7
  RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
8