Skip to content
This repository was archived by the owner on Nov 5, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM alpine:latest
MAINTAINER Jayce Gregg <jaycegregg0@gmail.com>

#
# To start a webserver for viewing the HTML version of this project run this:
# cd /src && while true ; do nc -l 80 < index.html ; done
#

RUN apk add ruby2.2 \
ruby2.2-json --no-cache \
&& rm -rf /var/cache/apk/* \
&& gem2.2 install awesome_bot --no-ri --no-rdoc

COPY . /src
WORKDIR /src

CMD ["awesome_bot", "README.md", "--allow-dupe", "--allow-redirect", \
"--allow-ssl", "--allow-timeout", "--allow", "999,403,405,500"]