mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-15 17:47:09 +00:00
15 lines
289 B
Docker
15 lines
289 B
Docker
ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky
|
|
FROM ${IMAGE}/builder/fedora-33-base:latest
|
|
|
|
RUN dnf -y -q install \
|
|
clang \
|
|
gcovr \
|
|
lcov \
|
|
libcxx-devel \
|
|
libcxxabi-devel \
|
|
llvm \
|
|
npm \
|
|
&& dnf clean all \
|
|
&& npm install -g lcov-summary \
|
|
&& npm cache clean --force
|