yinwentao commited on
Commit
243ac89
·
1 Parent(s): 5631808

updateDKfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -4
Dockerfile CHANGED
@@ -1,9 +1,8 @@
1
  FROM nvidia/cuda:11.3.1-cudnn8-devel-ubuntu18.04
2
 
3
- RUN install python3.8 -y
4
- RUN ln -s /usr/bin/pip3 /usr/bin/pip && \
5
- ln -s /usr/bin/python3.8 /usr/bin/python
6
- ENV PATH=/venv/bin:$PATH
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
  WORKDIR /code
8