mirror of
https://github.com/godotengine/issue-bot.git
synced 2025-12-31 05:48:38 +03:00
12 lines
234 B
Docker
12 lines
234 B
Docker
FROM fedora:33
|
|
|
|
LABEL maintainer="Hein-Pieter van Braam-Stewart <hp@prehensile-tales.com>"
|
|
|
|
RUN dnf -y install python3-websocket-client python3-requests && \
|
|
dnf clean all
|
|
|
|
COPY bot.py /root/bot.py
|
|
WORKDIR /root
|
|
|
|
CMD /root/bot.py
|