scinote-web/Dockerfile

41 lines
1.2 KiB
Docker
Raw Normal View History

2019-07-12 16:00:06 +08:00
FROM ruby:2.5.5-stretch
2016-02-12 23:52:43 +08:00
MAINTAINER BioSistemika <info@biosistemika.com>
2019-06-09 15:43:56 +08:00
# Get version of Debian (lsb_release substitute) and save it to /tmp/lsb_release for further commands
RUN cat /etc/os-release | grep -Po "VERSION=.*\(\K\w+" | tee /tmp/lsb_release
# Add Debian stretch backports repository
RUN echo "deb http://http.debian.net/debian $(cat /tmp/lsb_release)-backports main" \
| tee /etc/apt/sources.list.d/$(cat /tmp/lsb_release)-backports.list
2016-02-12 23:52:43 +08:00
# additional dependecies
# libSSL-1.0 is required by wkhtmltopdf binary
# libreoffice for file preview generation
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 \
2019-07-11 01:25:10 +08:00
poppler-utils \
sudo graphviz --no-install-recommends \
libfile-mimeinfo-perl && \
2019-06-09 15:43:56 +08:00
apt-get install -y --no-install-recommends -t $(cat /tmp/lsb_release)-backports libreoffice && \
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