1
0
mirror of https://github.com/fspc/bikebike.git synced 2025-04-04 08:13:24 -04:00
bikebike/14.04/Dockerfile
Jonathan Rosenbaum 2e7f95ae1e Adds versioning - bikebike/bikebike:tag
Resolves issues where a newer library is required from a newer ubuntu.
2016-10-21 20:29:03 +00:00

8 lines
463 B
Docker

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