yinwentao
commited on
Commit
·
7356412
1
Parent(s):
d2496a1
updateDKfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
FROM nvidia/cuda:11.3.1-cudnn8-devel-ubuntu18.04
|
2 |
|
3 |
RUN apt-get update && \
|
4 |
-
apt-get install -y python3-pip python3.8
|
5 |
rm -rf /var/lib/apt/lists/*
|
6 |
|
|
|
7 |
|
8 |
WORKDIR /code
|
9 |
|
|
|
1 |
FROM nvidia/cuda:11.3.1-cudnn8-devel-ubuntu18.04
|
2 |
|
3 |
RUN apt-get update && \
|
4 |
+
apt-get install -y python3-pip python3.8 && \
|
5 |
rm -rf /var/lib/apt/lists/*
|
6 |
|
7 |
+
RUN python -m pip install --upgrade pip
|
8 |
|
9 |
WORKDIR /code
|
10 |
|