diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2023-09-24 21:38:46 +0300 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2023-09-24 21:52:35 +0300 |
| commit | f7ab68fc0796ed9ec7e56ea75f836041eacafaf5 (patch) | |
| tree | 3043426d3ab053218a8a94c12a77c54d359e0206 /Dockerfile | |
| parent | f714764b7dfdc9086a6221f5147a7e1332188ae5 (diff) | |
Update to 2023
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..32d3d05 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM python:3.11-alpine + +ENV PYTHONUNBUFFERED=1 + +WORKDIR /app +COPY requirements.txt ./ +RUN pip install -r requirements.txt + +COPY *.png /app/ +COPY taulubot.py /app/taulubot.py + +CMD ["python", "taulubot.py"] |
