diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2023-09-10 20:40:49 +0300 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2023-09-10 20:40:49 +0300 |
| commit | 74ee6b327de8db0cf3ea8bd5a56040eb3fb02f08 (patch) | |
| tree | 38bd1d796224e68619023cac5904628beea7daaa /Dockerfile | |
| parent | 18210e2d54136a18b4ccf013cfa9971a797ddb47 (diff) | |
Small fixes, add Docker
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 11 |
1 files changed, 11 insertions, 0 deletions
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"] |
