Merge branch 'master' into bn_launcher_integration

This commit is contained in:
bruckwubete
2018-07-09 13:20:34 -04:00
12 changed files with 52 additions and 24 deletions

View File

@ -1,7 +1,7 @@
FROM ruby:2.5
# Install app dependencies.
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs
# Set an environment variable for the install location.
ENV RAILS_ROOT /usr/src/app
@ -26,8 +26,8 @@ RUN bundle install --without development test --deployment --clean
RUN bundle exec rake assets:clean
RUN bundle exec rake assets:precompile
# Expose port 3000.
EXPOSE 3000
# Expose port 80.
EXPOSE 80
# Start the application.
CMD ["bin/start"]