| Dockerfile - docker-images - Various docker image builds I have created over th… | |
| git clone git://jay.scot/docker-images | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| Dockerfile (617B) | |
| --- | |
| 1 FROM ruby:2.2.5 | |
| 2 MAINTAINER Jay Scott | |
| 3 | |
| 4 WORKDIR /home/warvox | |
| 5 RUN apt-get update && apt-get -y install \ | |
| 6 gnuplot \ | |
| 7 lame \ | |
| 8 build-essential \ | |
| 9 libssl-dev \ | |
| 10 libcurl4-openssl-dev \ | |
| 11 postgresql-contrib \ | |
| 12 git-core \ | |
| 13 curl \ | |
| 14 libpq-dev \ | |
| 15 && git clone https://github.com/rapid7/warvox /home/warvox \ | |
| 16 && ln -s /usr/bin/ruby2.1 /usr/bin/ruby \ | |
| 17 && sed -i "s/hdm\/reportable/beardyjay\/reportable/g" Gemfile \ | |
| 18 && bundle install \ | |
| 19 && make \ | |
| 20 && apt -y remove libpq-dev libcurl4-openssl-dev libssl-dev git-core bu… | |
| 21 && rm -rf /var/lib/apt/lists/* | |
| 22 | |
| 23 ADD setup.sh / | |
| 24 EXPOSE 7777 | |
| 25 | |
| 26 CMD ["/setup.sh"] |