mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
10 lines
257 B
Docker
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
|