From ce739723f2f0a6cb5c25c950bb948a405fc48452 Mon Sep 17 00:00:00 2001 From: Daniel Federschmidt Date: Thu, 16 Nov 2023 10:22:54 +0100 Subject: [PATCH] chore: upgrade python3.9 for running appinspect cli --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a2e8acc..fce9c2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Container image that runs your code -FROM python:3.7.10 +FROM python:3.9.18 COPY requirements.txt / RUN pip install --no-cache-dir --prefer-binary -r /requirements.txt