From 74ee6b327de8db0cf3ea8bd5a56040eb3fb02f08 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Sun, 10 Sep 2023 20:40:49 +0300 Subject: Small fixes, add Docker --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..64a6c96 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM python:3.11-alpine + +WORKDIR /app +COPY requirements.txt ./ +RUN pip install -r requirements.txt + +COPY app ./app +COPY plugins ./plugins +COPY aggro.py ./aggro.py + +CMD ["python", "aggro.py"] -- cgit v1.3