mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-15 17:47:09 +00:00
12 lines
397 B
Docker
12 lines
397 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++-10 \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|