scinote-web/Dockerfile.production

39 lines
947 B
Docker
Raw Normal View History

2018-01-31 17:02:45 +08:00
FROM ruby:2.4.3
MAINTAINER BioSistemika <info@biosistemika.com>
# additional dependecies
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 \
nodejs \
postgresql-client \
netcat \
default-jre-headless \
sudo graphviz --no-install-recommends \
libfile-mimeinfo-perl && \
2017-07-12 22:41:55 +08:00
npm install -g yarn && \
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