1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-30 05:59:07 +00:00
conky/Dockerfile

37 lines
736 B
Docker
Raw Normal View History

FROM ubuntu:latest
RUN apt-get update \
&& apt-get install -y \
cmake \
git \
g++ \
libimlib2-dev \
liblua5.3-dev \
libxext-dev \
libxft-dev \
libxdamage-dev \
libxinerama-dev \
ncurses-dev
COPY . /conky
WORKDIR /conky/build
2018-02-18 15:56:45 +00:00
ARG X11=yes
RUN sh -c 'if [ "$X11" = "yes" ] ; then cmake ../ ; else cmake -DBUILD_X11=OFF ../ ; fi' \
&& make -j5 all \
&& make -j5 install \
&& apt-get remove -y \
cmake \
git \
g++ \
libimlib2-dev \
liblua5.3-dev \
libxext-dev \
libxft-dev \
libxdamage-dev \
libxinerama-dev \
ncurses-dev \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /conky \
2018-02-18 15:56:45 +00:00
CMD conky