Sha256: 300cb0f09074ba853530818d4456ec36b046f649de9a6b4f2113d76758f74fe3
Contents?: true
Size: 447 Bytes
Versions: 24
Compression:
Stored size: 447 Bytes
Contents
FROM ruby:3.0 WORKDIR /discord-bot/ RUN gem install bundler RUN git clone https://github.com/multiplay/qstat.git \ && cd /discord-bot/qstat \ && ./autogen.sh \ && ./configure \ && make install \ && cd /discord-bot/ ENV PATH="/discord-bot/qstat/:${PATH}" COPY . /discord-bot/ RUN bundle install \ && gem build qwtf_discord_bot.gemspec \ && gem install --local /discord-bot/qwtf_discord_bot-$(cat VERSION).gem ENTRYPOINT ["qwtf_discord_bot"]
Version data entries
24 entries across 24 versions & 1 rubygems
Version | Path |
---|---|
qwtf_discord_bot-5.5.21 | Dockerfile |
qwtf_discord_bot-5.5.20 | Dockerfile |
qwtf_discord_bot-5.5.19 | Dockerfile |
qwtf_discord_bot-5.5.18 | Dockerfile |