notebook/Dockerfile
2020-01-08 00:27:25 -06:00

10 lines
257 B
Docker

FROM ruby:2.6.3
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