diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..407da2c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM python:alpine + +WORKDIR /bot +COPY . . +RUN touch settings.cfg + +RUN pip install --no-cache-dir --requirement requirements.txt + +USER nobody:nogroup + +ENTRYPOINT ["python", "bot.py"]