mirror of https://github.com/fspc/bikebike.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
463 B
7 lines
463 B
FROM ubuntu:14.04
|
|
MAINTAINER Jonathan Rosenbaum <gnuser@gmail.com>
|
|
|
|
# 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
|
|
|