mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-17 18:45:10 +00:00
dc35a1b0a8
Adding: - clang-8 - gcc-5 through gcc-8 - fedora & centos builds Fixing: - mysqlclient default search path - build on centos6
16 lines
491 B
Docker
16 lines
491 B
Docker
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 \
|
|
&& add-apt-repository 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main' \
|
|
&& DEBIAN_FRONTEND=noninteractive \
|
|
apt-get install -qy --no-install-recommends \
|
|
clang-8 \
|
|
lldb-8 \
|
|
lld-8 \
|
|
libc++-8-dev \
|
|
libc++abi-8-dev \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|