FROM ruby:3.1.2-alpine RUN apk add build-base libpq-dev tzdata WORKDIR /app ADD Gemfile* ./ RUN bundle ADD . ./ CMD ["./entrypoint.sh"]