Sha256: 76b811eeb3fd96ca21ee2562dcc9485fe349294789f3b77c762e2c208bde7c87

Contents?: true

Size: 749 Bytes

Versions: 15

Compression:

Stored size: 749 Bytes

Contents

FROM centos

ENV RUBY_ROOT /usr/local
ENV RUBY_VERSION 2.0.0-p353

RUN yum install autoconf bison flex gcc gcc-c++ kernel-devel make m4 -y
RUN yum install libxml2-devel libxslt-devel libcurl-devel openssl-devel -y
RUN yum install git -y
RUN mkdir /src && cd /src && git clone https://github.com/sstephenson/ruby-build.git && cd ruby-build && ./install.sh && rm -rf /src/ruby-build
RUN ruby-build $RUBY_VERSION $RUBY_ROOT

RUN yum install mysql-devel mysql-libs -y

RUN gem install bundler
RUN gem install ridley-connectors -v 1.4.0
RUN gem install grape -v 0.6.1
RUN gem install fog -v 1.10.1

ADD . /app
RUN cd /app && bundle install --without development test

WORKDIR /app

ENTRYPOINT /app/bin/boot

CMD bundle exec bin/mbsrv -c /app/config.json

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
motherbrain-1.5.0 Dockerfile
motherbrain-1.4.0 Dockerfile
motherbrain-1.3.0 Dockerfile
motherbrain-1.2.1 Dockerfile
motherbrain-1.2.0 Dockerfile
motherbrain-1.1.3 Dockerfile
motherbrain-1.1.2 Dockerfile
motherbrain-1.1.1 Dockerfile
motherbrain-1.1.0 Dockerfile
motherbrain-1.0.0 Dockerfile
motherbrain-0.14.5 Dockerfile
motherbrain-0.14.4 Dockerfile
motherbrain-0.14.3 Dockerfile
motherbrain-0.14.2 Dockerfile
motherbrain-0.13.1 Dockerfile