commit 1359b6d6dfa593b9d9edf66c1728abb2c6971e5d Author: Jonathan Rosenbaum Date: Wed Dec 10 16:09:58 2014 +0000 The beginning of a legacy for Bike Collective software! diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2e1eab0 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM ubuntu:latest +MAINTAINER Jonathan Rosenbaum + +# Not all applications use mysql, but nevertheless. +RUN echo "mysql-server-5.5 mysql-server/root_password password" | debconf-set-selections; echo "mysql-server-5.5 mysql-server/root_password_again password" | debconf-set-selections; apt-get update && apt-get -y install mysql-server git supervisor ruby make libmysqlclient-dev ruby-dev + +COPY supervisord.conf /etc/supervisor/supervisord.conf diff --git a/supervisord.conf b/supervisord.conf new file mode 100644 index 0000000..a951685 --- /dev/null +++ b/supervisord.conf @@ -0,0 +1,5 @@ +[supervisord] +nodaemon=true + +[include] +files = /etc/supervisor/conf.d/*.conf