notebook/Dockerfile
2016-10-12 19:17:10 -04:00

10 lines
276 B
Docker

FROM ruby:2.3.1
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs imagemagick libmagickwand-dev
RUN mkdir /notebook-ai
RUN gem install rails -v 4.2.5
WORKDIR /notebook-ai
ADD . /notebook-ai
RUN bundle install
RUN rake db:create
RUN rake db:migrate