From a09387553920c73abfd0e6e46b3369265a601f18 Mon Sep 17 00:00:00 2001 From: nex Date: Mon, 15 Jan 2024 10:17:00 +0000 Subject: [PATCH] Change base image to Ubuntu --- Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 69628f3..07c6d01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ -FROM python:3.11-bookworm +# FROM python:3.11-bookworm +FROM ubuntu:latest RUN DEBIAN_FRONTEND=noninteractive apt-get update RUN DEBIAN_FRONTEND=noninteractive apt-get upgrade -y @@ -17,7 +18,10 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \ whois \ wget \ curl \ - htop + htop \ + python3 \ + python3-pip \ + python3-dev RUN pip install --upgrade --break-system-packages pip wheel setuptools