make upgrading from 1.0 easier

This commit is contained in:
Joshua Arts
2018-07-05 17:25:59 -04:00
parent fd1b550f93
commit e2ad6e7715
12 changed files with 51 additions and 23 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
@ -23,8 +23,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"]