notebook/Dockerfile
2018-06-28 15:16:06 -05:00

10 lines
257 B
Docker

FROM ruby:2.5.1
RUN apt-get update -qq && \
apt-get install -y build-essential libpq-dev nodejs imagemagick libmagickwand-dev && \
mkdir /notebook-ai
COPY . /notebook-ai
WORKDIR /notebook-ai
RUN bundle install
RUN rake db:create
RUN rake db:migrate