scinote-web/Dockerfile
2018-11-06 09:33:18 +01:00

28 lines
628 B
Docker

FROM ruby:2.4.4
MAINTAINER BioSistemika <info@biosistemika.com>
# additional dependecies
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && \
apt-get update -qq && \
apt-get install -y \
nodejs \
postgresql-client \
default-jre-headless \
unison \
sudo graphviz --no-install-recommends \
libfile-mimeinfo-perl && \
npm install -g yarn && \
rm -rf /var/lib/apt/lists/*
# heroku tools
RUN wget -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh
ENV BUNDLE_PATH /usr/local/bundle/
# create app directory
ENV APP_HOME /usr/src/app
RUN mkdir $APP_HOME
WORKDIR $APP_HOME
CMD rails s -b 0.0.0.0