-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathDockerfile.ubuntu.focal
77 lines (72 loc) · 1.36 KB
/
Dockerfile.ubuntu.focal
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
FROM ubuntu:focal
LABEL Description="Aktualizr testing dockerfile for Ubuntu Focal with static checks"
ENV DEBIAN_FRONTEND noninteractive
# It is important to run these in the same RUN command, because otherwise
# Docker layer caching breaks us
RUN apt-get update && apt-get -y install --no-install-suggests --no-install-recommends \
apt-transport-https \
asn1c \
autoconf \
automake \
bison \
ccache \
clang-11 \
clang-format-11 \
clang-tidy-11 \
clang-tools-11 \
cmake \
curl \
doxygen \
e2fslibs-dev \
g++ \
gcc \
git \
graphviz \
jq \
lcov \
libarchive-dev \
libboost-dev \
libboost-log-dev \
libboost-program-options-dev \
libboost-system-dev \
libboost-test-dev \
libboost-thread-dev \
libcurl4-openssl-dev \
libengine-pkcs11-openssl \
libexpat1-dev \
libfuse-dev \
libglib2.0-dev \
libgpgme11-dev \
libgtest-dev \
liblzma-dev \
libostree-dev \
libp11-dev \
libsodium-dev \
libsqlite3-dev \
libssl-dev \
libtool \
lshw \
make \
net-tools \
ninja-build \
opensc \
ostree \
pkg-config \
psmisc \
python-is-python3 \
python3-dev \
python3-gi \
python3-openssl \
python3-pip \
python3-venv \
softhsm2 \
sqlite3 \
strace \
valgrind \
wget \
xsltproc \
zip
RUN ln -s clang-11 /usr/bin/clang && \
ln -s clang++-11 /usr/bin/clang++
RUN useradd -m testuser
WORKDIR /