-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
executable file
·36 lines (32 loc) · 954 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
FROM ubuntu:focal
ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8
ENV TZ=Europe/Kiev
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get --yes -qq update \
&& apt-get --yes -qq upgrade \
&& apt-get --yes -qq install \
bzip2 \
cmake \
cpio \
curl \
g++ \
gcc \
gfortran \
git \
libblas-dev \
liblapack-dev \
libopenmpi-dev \
openmpi-bin \
python3-dev \
python3-pip \
wget \
zlib1g-dev \
vim \
htop \
openssh-server \
net-tools \
iputils-ping \
mpich \
iproute2
CMD [ "/bin/bash" ]