1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-02 15:09:07 +00:00
conky/tests/dockerfiles/Dockerfile.fedora-29-clang-7
Brenden Matthews b8d956f884 Add clang 8 to builds.
Also added new librsvg functions, and ignore deprecation warnings on new
versions of librsvg.

Disable sccache on FreeBSD.
2019-04-14 14:42:59 -04:00

16 lines
413 B
Docker

ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky
FROM ${IMAGE}/builder/fedora-29-base:latest
RUN dnf -y -q install \
llvm \
clang \
libcxx-devel \
libcxxabi-devel \
&& curl -Ls https://rpm.nodesource.com/setup_11.x -o npm.sh \
&& bash npm.sh \
&& rm npm.sh \
&& dnf -y -q install npm \
&& dnf clean all \
&& npm install -g lcov-summary \
&& npm cache clean --force