From 394990c3aca8ec73aab539fef961c46fe4909554 Mon Sep 17 00:00:00 2001 From: StNicolay Date: Sat, 29 Oct 2022 22:09:16 +0000 Subject: [PATCH] changed dockerfile to use python3.11 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0daffa5..239935d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-slim +FROM python:3.11-slim # Keeps Python from generating .pyc files in the container ENV PYTHONDONTWRITEBYTECODE=1 @@ -23,4 +23,4 @@ COPY . /app RUN adduser -u 1000 --disabled-password --gecos "" appuser && chown -R appuser /app USER appuser -CMD ["python", "main.py"] \ No newline at end of file +CMD ["python", "main.py"]