mirror of
https://github.com/hakanensari/frankfurter.git
synced 2024-11-22 11:02:30 +01:00
3319c49dca
- Bump ruby version - Remove obsolete files, including deploy artefacts - Don't use pride when testing - Store gem and app in same repo - Switch to asdf
10 lines
197 B
Docker
10 lines
197 B
Docker
FROM ruby:2.4.2
|
|
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
ADD Gemfile /app/Gemfile
|
|
ADD Gemfile.lock /app/Gemfile.lock
|
|
RUN bundle install --without development test
|
|
ADD . /app
|
|
CMD unicorn -c ./config/unicorn.rb
|