chronicle_bot/Dockerfile
Bill Niblock b919de11f5 Add Docker capabilities
README.md: Update with Docker instructions
Dockerfile: Add file
2021-02-16 23:15:50 -05:00

12 lines
152 B
Docker

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