scinote-web/Dockerfile

30 lines
731 B
Docker
Raw Normal View History

2017-06-23 16:08:54 +08:00
FROM ruby:2.4.1
2016-02-12 23:52:43 +08:00
MAINTAINER BioSistemika <info@biosistemika.com>
# additional dependecies
2017-07-12 22:41:55 +08:00
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && \
apt-get update -qq && \
apt-get install -y \
nodejs \
2017-10-12 19:50:48 +08:00
qt5-default libqt5webkit5-dev gstreamer1.0-plugins-base gstreamer1.0-tools gstreamer1.0-x \
xvfb \
postgresql-client \
default-jre-headless \
unison \
sudo graphviz --no-install-recommends \
libfile-mimeinfo-perl && \
2017-07-12 22:41:55 +08:00
npm install -g yarn && \
rm -rf /var/lib/apt/lists/*
2016-02-12 23:52:43 +08:00
# heroku tools
RUN wget -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh
2017-04-21 21:13:20 +08:00
ENV BUNDLE_PATH /usr/local/bundle/
2016-02-12 23:52:43 +08:00
# create app directory
ENV APP_HOME /usr/src/app
RUN mkdir $APP_HOME
WORKDIR $APP_HOME
CMD rails s -b 0.0.0.0