update readme and env

This commit is contained in:
Zachary Chai
2017-01-24 10:27:36 -05:00
parent 15760ebf0b
commit bcd012bef5
3 changed files with 5 additions and 8 deletions

View File

@ -4,15 +4,13 @@ FROM ruby:2.3.1
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs
ENV RAILS_ENV=production \
APP_HOME=/usr/src/app \
BIGBLUEBUTTON_ENDPOINT=http://test-install.blindsidenetworks.com/bigbluebutton/ \
BIGBLUEBUTTON_SECRET=8cd8ef52e8e101574e400365b55e11a6
APP_HOME=/usr/src/app
RUN mkdir $APP_HOME
WORKDIR $APP_HOME
# Add the greenlight app
# Add the greenlight app
ADD . $APP_HOME
# Install app dependencies
@ -20,4 +18,3 @@ RUN bundle install --without development test doc --deployment --clean
RUN bundle exec rake assets:precompile --trace
CMD ["scripts/default_start.sh"]