FROM ruby:latest WORKDIR /bot RUN apt-get update && apt-get install -y sqlite3 libsqlite3-dev COPY Gemfile /bot RUN gem install bundler RUN bundle install COPY . /bot CMD ["ruby", "bot.rb"]