scinote-web/Dockerfile.production

50 lines
1.2 KiB
Docker
Raw Normal View History

2019-09-12 23:21:48 +08:00
FROM ruby:2.6.4-buster
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 \
groff-base \
awscli \
postgresql-client \
netcat \
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 && \
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/*
2017-04-21 21:13:20 +08:00
ENV RAILS_ENV production
2017-03-28 03:04:47 +08:00
# install gems
2017-04-21 21:13:20 +08:00
COPY Gemfile* /usr/src/bundle/
COPY addons /usr/src/bundle/addons
WORKDIR /usr/src/bundle
2017-03-28 03:04:47 +08:00
RUN bundle install
# create app directory
ENV APP_HOME /usr/src/app
RUN mkdir $APP_HOME
WORKDIR $APP_HOME
COPY . .
RUN rm -f $APP_HOME/config/application.yml $APP_HOME/production.env
2017-04-21 21:13:20 +08:00
RUN DATABASE_URL=postgresql://postgres@db/scinote_production \
PAPERCLIP_HASH_SECRET=dummy \
SECRET_KEY_BASE=dummy \
2017-04-21 21:13:20 +08:00
DEFACE_ENABLED=true \
bash -c "rake assets:precompile && rake deface:precompile"
CMD rails s -b 0.0.0.0