Created
July 28, 2016 13:08
-
-
Save nazieb/536bce099590b5bb0416dfb2750d390a to your computer and use it in GitHub Desktop.
Docker for API Blueprint builder
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 debian:jessie | |
RUN apt-get update \ | |
&& apt-get install -y git nodejs php5-common php5-cli --no-install-recommends \ | |
&& rm -rf /var/lib/apt/lists/* | |
RUN npm install -g aglio | |
RUN git clone --recursive git://github.com/apiaryio/drafter.git \ | |
&& cd drafter \ | |
&& ./configure \ | |
&& make install | |
RUN curl -sS http://blueman.pixelfusion.co.nz/installer.php | php \ | |
&& mv blueman.phar /usr/local/bin/blueman |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment