scinote-web/Dockerfile

43 lines
1.3 KiB
Docker
Raw Normal View History

2019-09-12 23:21:48 +08:00
FROM ruby:2.6.4-buster
2016-02-12 23:52:43 +08:00
MAINTAINER BioSistemika <info@biosistemika.com>
2019-09-30 22:08:44 +08:00
RUN wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - && \
echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' >> /etc/apt/sources.list && \
wget -O /usr/bin/chromedriver_linux64.zip https://chromedriver.storage.googleapis.com/77.0.3865.40/chromedriver_linux64.zip && \
unzip /usr/bin/chromedriver_linux64.zip -d /usr/bin/
2016-02-12 23:52:43 +08:00
# 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 \
2019-09-12 23:21:48 +08:00
librsvg2-2 \
libvips42 \
sudo graphviz --no-install-recommends \
libreoffice \
libfile-mimeinfo-perl \
2019-09-30 22:08:44 +08:00
google-chrome-stable=77.* && \
npm install -g yarn && \
2019-09-12 23:21:48 +08:00
ln -s /usr/lib/x86_64-linux-gnu/libvips.so.42 /usr/lib/x86_64-linux-gnu/libvips.so && \
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