From 6bb6180f6cf20bec936231bc27c46d55967b3509 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Kr=C4=8Dek?= Date: Sun, 6 Oct 2024 13:47:14 +0200 Subject: [PATCH] Make sure to use python3 everywhere --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 593e261..30ccbaa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ FROM base AS builder COPY requirements.txt ./ RUN --mount=type=cache,target=/tmp/pip_cache \ - python -m pip install --upgrade pip && \ + python3 -m pip install --upgrade pip && \ pip install \ -r requirements.txt \ --extra-index-url https://www.piwheels.org/simple \