Skip to content

Instantly share code, notes, and snippets.

@nazieb
Created July 28, 2016 13:08
Show Gist options
  • Save nazieb/536bce099590b5bb0416dfb2750d390a to your computer and use it in GitHub Desktop.
Save nazieb/536bce099590b5bb0416dfb2750d390a to your computer and use it in GitHub Desktop.
Docker for API Blueprint builder
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