From 0a2446d9ccedead0897b8ab3d1d591b94160d42e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillaume=20Lam=C3=A9?= Date: Wed, 8 Jan 2025 12:07:31 +0100 Subject: [PATCH] Fix: python3 package name --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3dedccb..09e63f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ FROM ubuntu:latest -RUN apt update ; apt upgrade -y ; apt dist-upgrade -y ; apt clean -RUN apt install -y python ; apt clean +RUN apt update ; apt upgrade -y ; apt dist-upgrade -y +RUN apt install -y python3 ; apt clean