From f7ab68fc0796ed9ec7e56ea75f836041eacafaf5 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Sun, 24 Sep 2023 21:38:46 +0300 Subject: Update to 2023 --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') 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"] -- cgit v1.3