chronicle_bot/Dockerfile

14 lines
235 B
Text
Raw Permalink Normal View History

FROM ruby:3.0-alpine
RUN bundle config --global frozen 1
RUN apk add build-base sqlite sqlite-dev sqlite-libs
WORKDIR /app
COPY Gemfile Gemfile.lock ./
RUN bundle install
COPY . .
CMD ["bundle", "exec", "rake", "chronicle:start"]