mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-15 09:44:04 +00:00
dc35a1b0a8
Adding: - clang-8 - gcc-5 through gcc-8 - fedora & centos builds Fixing: - mysqlclient default search path - build on centos6
12 lines
396 B
Docker
12 lines
396 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 ppa:ubuntu-toolchain-r/test \
|
|
&& DEBIAN_FRONTEND=noninteractive \
|
|
apt-get install -qy --no-install-recommends \
|
|
g++-8 \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|