From 7c26f8f1609460b0a2f84661cf42f9fab02a7769 Mon Sep 17 00:00:00 2001 From: Vadims Filipovskis Date: Wed, 26 Oct 2022 20:39:40 +0200 Subject: [PATCH] feat: upgrade to python 3.11 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ded6033..b00c162 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3-alpine +FROM python:3.11-alpine RUN apk add --no-cache --virtual .pynacl_deps build-base python3-dev libffi-dev @@ -9,4 +9,4 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . . -CMD [ "python", "./notifier_bot.py" ] +CMD ["python", "./notifier_bot.py"]