-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDockerfile
39 lines (29 loc) · 819 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
37
FROM ubuntu:18.04
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y -q wget \
software-properties-common
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null
RUN apt-add-repository 'deb https://apt.kitware.com/ubuntu/ bionic main'
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y -q \
git \
autoconf \
automake \
debianutils \
m4 \
build-essential \
automake \
autoconf \
libtool \
wget \
python3 \
libssl-dev \
libcurl4-openssl-dev \
curl \
gcc \
cmake \
pkg-config \
gcc-multilib \
g++-multilib \
zip
RUN wget https://github.com/openssl/openssl/archive/OpenSSL_1_1_1h.zip; unzip OpenSSL_1_1_1h.zip; cd openssl-OpenSSL_1_1_1h; setarch i386 ./config -m32; make -j4; make install