10 lines
377 B
Docker
10 lines
377 B
Docker
ARG base_commit
|
|
FROM ruby:2.7.5-alpine
|
|
RUN apk add --no-cache build-base tzdata sqlite sqlite-dev postgresql-dev git && gem install tzinfo-data
|
|
WORKDIR /app
|
|
COPY Gemfile* /app/
|
|
RUN gem install bundler:2.3.13 && bundle config set deployment 'true' && bundle install
|
|
COPY . /app
|
|
ENV RAILS_ENV production
|
|
CMD bundle exec rails db:migrate && bundle exec rails s -p 3000 -b 0.0.0.0
|