mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 05:05:55 +08:00
26 lines
581 B
Text
26 lines
581 B
Text
|
FROM rails:4.2.5
|
||
|
MAINTAINER BioSistemika <info@biosistemika.com>
|
||
|
|
||
|
# additional dependecies
|
||
|
RUN apt-get update -qq && apt-get install -y default-jre-headless unison sudo --no-install-recommends && rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
# heroku tools
|
||
|
RUN wget -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh
|
||
|
|
||
|
# install gems
|
||
|
COPY Gemfile* /tmp/
|
||
|
WORKDIR /tmp
|
||
|
RUN bundle install
|
||
|
|
||
|
# create app directory
|
||
|
ENV APP_HOME /usr/src/app
|
||
|
RUN mkdir $APP_HOME
|
||
|
WORKDIR $APP_HOME
|
||
|
|
||
|
# container user
|
||
|
RUN groupadd scinote
|
||
|
RUN useradd -ms /bin/bash -g scinote scinote
|
||
|
USER scinote
|
||
|
|
||
|
CMD rails s -b 0.0.0.0
|