File tree Expand file tree Collapse file tree 1 file changed +39
-22
lines changed Expand file tree Collapse file tree 1 file changed +39
-22
lines changed Original file line number Diff line number Diff line change @@ -15,35 +15,46 @@ ENV DEBIAN_FRONTEND=noninteractive \
15
15
LANG=C.UTF-8
16
16
17
17
RUN apt-get update && \
18
- apt-get install -y \
19
- libsm6 libxext6 libxrender-dev mercurial libopenblas-dev libgdal-dev \
20
- openjdk-8-jdk \
21
- libasound2-dev \
18
+ apt-get install -y --no-install-recommends \
19
+ automake \
20
+ fonts-nanum \
21
+ fonts-nanum-coding \
22
+ fonts-nanum-extra \
22
23
gfortran \
23
- libgstreamer1.0-dev \
24
- libgstreamer-plugins-base1.0-dev \
25
- libgtk-3-dev \
26
- libtbb-dev \
24
+ htop \
25
+ libasound2-dev \
27
26
libatlas-base-dev \
27
+ libavresample-dev \
28
28
libdc1394-22-dev \
29
- libxvidcore -dev \
29
+ libeigen3 -dev \
30
30
libfaac-dev \
31
+ libgdal-dev \
32
+ libgflags-dev \
33
+ libgoogle-glog-dev \
34
+ libgphoto2-dev \
35
+ libgstreamer-plugins-base1.0-dev \
36
+ libgstreamer1.0-dev \
37
+ libgtk-3-dev \
38
+ libhdf5-dev \
31
39
libmp3lame-dev \
40
+ libopenblas-dev \
41
+ libopencore-amrnb-dev \
42
+ libopencore-amrwb-dev \
43
+ libprotobuf-dev \
32
44
libtheora-dev \
33
45
libvorbis-dev \
34
- libxvidcore-dev \
35
- libopencore-amrnb-dev libopencore-amrwb-dev \
36
- libavresample-dev \
37
- x264 \
38
46
libx264-dev \
39
- v4l-utils \
40
- libprotobuf-dev protobuf-compiler \
41
- libgoogle-glog-dev libgflags-dev \
42
- libgphoto2-dev \
43
- libeigen3-dev \
44
- libhdf5-dev \
47
+ libxext6 \
48
+ libxrender-dev \
49
+ libxvidcore-dev \
50
+ mercurial \
45
51
ncurses-term \
46
- automake
52
+ protobuf-compiler \
53
+ v4l-utils \
54
+ x264 \
55
+ openjdk-8-jdk \
56
+ libsm6 \
57
+ libtbb-dev
47
58
48
59
49
60
RUN update-alternatives --install /opt/conda/bin/python python /opt/conda/bin/python3 2
@@ -166,9 +177,15 @@ RUN curl -sLO https://github.com/git-lfs/git-lfs/releases/download/v2.13.2/git-l
166
177
bash install.sh && \
167
178
rm -rf /tmp/*
168
179
169
- RUN curl -fL https://github.com/cdr/code-server/releases/download/v3.9.0/code-server-3.9.0-linux-amd64.tar.gz | tar -C /usr/local/lib -xz && \
170
- mv /usr/local/lib/code-server-3.9.0-linux-amd64 /usr/local/lib/code-server-3.9.0 && \
180
+ WORKDIR /tmp
181
+ RUN git clone https://github.com/aristocratos/bashtop.git && \
182
+ cd bashtop && \
183
+ make install
184
+
185
+ RUN curl -fL https://github.com/cdr/code-server/releases/download/v3.9.3/code-server-3.9.3-linux-amd64.tar.gz | tar -C /usr/local/lib -xz && \
186
+ mv /usr/local/lib/code-server-3.9.0-linux-amd64 /usr/local/lib/code-server-3.9.3 && \
171
187
ln -s /usr/local/lib/code-server-3.9.0/bin/code-server /usr/local/bin/code-server
188
+
172
189
# Install Open MPI
173
190
RUN mkdir /tmp/openmpi && \
174
191
cd /tmp/openmpi && \
You can’t perform that action at this time.
0 commit comments