You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docker/Dockerfile_base
+32-73
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,28 @@ FROM nvidia/cuda:10.1-cudnn7-devel-ubuntu18.04
4
4
5
5
SHELL ["/bin/bash", "-c"]
6
6
7
-
RUN apt-get update
8
-
RUN apt-get install -y python2.7-dev python-pip nano emacs
9
-
RUN apt-get install -y wget
10
-
RUN apt-get install -y libboost-all-dev
11
-
RUN apt-get install -y git
7
+
RUN sed -i "s,# deb http://archive.canonical.com/ubuntu,deb http://archive.canonical.com/ubuntu,g" /etc/apt/sources.list && apt-get update --fix-missing
8
+
9
+
10
+
#base
11
+
RUN apt-get install -y python3.6-dev python3-pip
12
+
RUN pip3 install --upgrade pip
13
+
RUN ldconfig
14
+
15
+
#basic user tools
16
+
RUN export DEBIAN_FRONTEND=noninteractive && \
17
+
apt-get install -y git wget nano emacs \
18
+
evince eog ffmpeg unzip zsh python3-tk locales \
19
+
htop
20
+
RUN apt-get update --fix-missing
12
21
22
+
RUN export DEBIAN_FRONTEND=noninteractive && \
23
+
apt-get install -y krb5-user && \
24
+
sed -i 's/default_realm = ATHENA.MIT.EDU/default_realm = CERN.CH/g' /etc/krb5.conf
25
+
RUN apt-get update --fix-missing
13
26
14
-
## root part
27
+
28
+
############ root part
15
29
RUN apt-get install -y libx11-dev libxpm-dev libxft-dev libxext-dev
0 commit comments