Skip to content

Instantly share code, notes, and snippets.

@lukeyeager
Last active September 5, 2017 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukeyeager/b555ba9da1ac8dcd42ed9ab6f5ec06e1 to your computer and use it in GitHub Desktop.
Save lukeyeager/b555ba9da1ac8dcd42ed9ab6f5ec06e1 to your computer and use it in GitHub Desktop.
FROM ubuntu:trusty
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
asciidoc \
autoconf \
automake \
build-essential \
ca-certificates \
docbook-xml \
docbook-xsl \
git \
gperf \
xsltproc \
&& rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/ccache/ccache /root/ccache
WORKDIR /root/ccache
RUN ./autogen.sh && ./configure && make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment