scinote-web/Dockerfile

34 lines
754 B
Docker
Raw Normal View History

FROM ruby:2.6.3-buster
2016-02-12 23:52:43 +08:00
MAINTAINER BioSistemika <info@biosistemika.com>
# additional dependecies
# libSSL-1.0 is required by wkhtmltopdf binary
# libreoffice for file preview generation
RUN apt-get update -qq && \
apt-get install -y \
libjemalloc2 \
libssl-dev \
nodejs \
npm \
postgresql-client \
default-jre-headless \
poppler-utils \
sudo graphviz --no-install-recommends \
libreoffice \
libfile-mimeinfo-perl && \
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
ENV PATH $APP_HOME/bin:$PATH
2016-02-12 23:52:43 +08:00
RUN mkdir $APP_HOME
WORKDIR $APP_HOME
CMD rails s -b 0.0.0.0