Skip to content

Instantly share code, notes, and snippets.

@kechol
Last active March 8, 2018 15:46
Show Gist options
  • Save kechol/d415988ae16118b9076bbd0ab03b3b25 to your computer and use it in GitHub Desktop.
Save kechol/d415988ae16118b9076bbd0ab03b3b25 to your computer and use it in GitHub Desktop.
FROM ruby:2.5-alpine
WORKDIR /app
COPY . /app
RUN bundle install
ENV APP_ENV production
EXPOSE 8080
CMD bundle exec rackup config.ru -p 8080 -o 0.0.0.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment