Add addons-ready Dockerfile

This commit is contained in:
Luka Murn 2017-02-07 14:01:19 +01:00
parent 62e3eff87e
commit 98c41052db

View file

@ -15,13 +15,17 @@ RUN wget -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh
# install gems
COPY Gemfile* /tmp/
COPY addons /tmp/addons
WORKDIR /tmp
RUN bundle install
RUN rm -rf addons
# create app directory
ENV APP_HOME /usr/src/app
RUN mkdir $APP_HOME
WORKDIR $APP_HOME
RUN mkdir addons
RUN ln -s $(readlink -f addons) /tmp
# container user
RUN groupadd scinote