chronicle_bot/Dockerfile

13 lines
152 B
Text
Raw Normal View History

FROM ruby:2.7-alpine
RUN bundle config --global frozen 1
WORKDIR /app
COPY Gemfile Gemfile.lock ./
RUN bundle install
COPY . .
CMD ["./chronicle"]