From b59ba4ecb574d8cbdf8b651fcb36f78150af7ffc Mon Sep 17 00:00:00 2001 From: Itamar Hartstein Date: Thu, 19 Oct 2023 22:10:01 +0300 Subject: [PATCH] Dockerfile: pin python version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8c97c0c..eeb52fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9 +FROM python:3.9.17 COPY requirements.txt /requirements.txt RUN pip install --no-cache-dir -r /requirements.txt