Last active
September 5, 2017 19:55
-
-
Save lukeyeager/b555ba9da1ac8dcd42ed9ab6f5ec06e1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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