1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-02 15:09:07 +00:00
conky/tests/dockerfiles/Dockerfile.ubuntu-clang-11

23 lines
637 B
Docker
Raw Normal View History

2021-01-24 00:53:24 +00:00
ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky
FROM ${IMAGE}/builder/ubuntu-base:latest
RUN wget -q https://apt.llvm.org/llvm-snapshot.gpg.key \
&& apt-key add llvm-snapshot.gpg.key \
2021-02-04 00:31:21 +00:00
&& add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-11 main' \
2021-01-24 00:53:24 +00:00
&& DEBIAN_FRONTEND=noninteractive \
apt-get install -qy --no-install-recommends \
clang-11 \
lldb-11 \
lld-11 \
libc++-11-dev \
libc++abi-11-dev \
clang-tools-11 \
clang-format-11 \
clang-tidy-11 \
2021-02-05 18:35:07 +00:00
nodejs \
npm \
2021-01-24 00:53:24 +00:00
&& apt-get clean \
2021-02-05 18:35:07 +00:00
&& rm -rf /var/lib/apt/lists/* \
&& npm install -g lcov-summary \
&& npm cache clean --force