scinote-web/Dockerfile.production

59 lines
1.5 KiB
Docker
Raw Normal View History

2022-04-29 19:49:28 +08:00
FROM ruby:2.7.6-bullseye
MAINTAINER BioSistemika <info@biosistemika.com>
ARG WKHTMLTOPDF_PACKAGE_URL=https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.buster_amd64.deb
# additional dependecies
# 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 \
fonts-droid-fallback \
fonts-noto-mono \
fonts-wqy-microhei \
fonts-wqy-zenhei \
libfile-mimeinfo-perl && \
wget -q -O /tmp/wkhtmltox_amd64.deb $WKHTMLTOPDF_PACKAGE_URL && \
apt-get install -y /tmp/wkhtmltox_amd64.deb && \
rm /tmp/wkhtmltox_amd64.deb && \
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
ENV BUNDLE_BUILD__SASSC=--disable-march-tune-native
2017-04-21 21:13:20 +08:00
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