scinote-web/Dockerfile

31 lines
710 B
Docker
Raw Normal View History

FROM ruby:2.4.5
2016-02-12 23:52:43 +08:00
MAINTAINER BioSistemika <info@biosistemika.com>
# additional dependecies
# libSSL-1.0 is required by wkhtmltopdf binary
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 \
libjemalloc1 \
libssl1.0-dev \
nodejs \
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