From eca082262314f189c58223ec4d52e009525692b1 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sat, 27 Apr 2024 15:06:55 -0400 Subject: [PATCH] fix dockerfile to use python 3.11 control file --- dockerfiles/Dockerfile.noble | 48 +----------------------------------- 1 file changed, 1 insertion(+), 47 deletions(-) diff --git a/dockerfiles/Dockerfile.noble b/dockerfiles/Dockerfile.noble index d31a8bf..9874c48 100644 --- a/dockerfiles/Dockerfile.noble +++ b/dockerfiles/Dockerfile.noble @@ -1,50 +1,4 @@ -# Created with `./make-new-image --codename noble ../python3.12/debian/control` DO NOT EDIT -FROM ubuntu:noble -RUN : \ - && apt-get update -qq \ - && DEBIAN_FRONTEND=noninteractive apt-get install \ - -qq -y --no-install-recommends \ - autoconf \ - blt-dev \ - build-essential:amd64 \ - bzip2 \ - debhelper \ - devscripts \ - dpkg-dev \ - equivs \ - git-buildpackage \ - gnupg \ - libbluetooth-dev \ - libbz2-dev \ - libdb-dev \ - libexpat1-dev \ - libffi-dev \ - libgdbm-dev \ - libgpm2 \ - liblzma-dev \ - libncursesw5-dev \ - libreadline-dev \ - libsqlite3-dev \ - libssl-dev \ - locales \ - lsb-release \ - mime-support \ - net-tools \ - netbase \ - pristine-tar \ - python3-sphinx \ - python3:any \ - quilt \ - sharutils \ - texinfo \ - time \ - tk-dev \ - xauth \ - xvfb \ - zlib1g-dev \ - && apt-get clean \ - && rm -rf /var/lib/apt/lists/* -# Created with `./make-new-image --codename noble ../python3.12/debian/control` DO NOT EDIT +# Created with `./make-new-image --codename noble ../python3.11/debian/control` DO NOT EDIT FROM ubuntu:noble RUN : \ && apt-get update -qq \