Python 환경 없이 Debian 시스템 이미지를 사용자 정의하는 방법은 무엇입니까?

Python 환경 없이 Debian 시스템 이미지를 사용자 정의하는 방법은 무엇입니까?

저는 Docker 초보자이고 Debian의 공식 컨테이너 이미지를 사용하여 내 컨테이너 이미지를 사용자 정의하고 싶습니다. 하지만 공식 플랫폼에서 제공하는 컨테이너 이미지에는 자체 Python 환경, 즉 Python 3.11 버전, 64비트가 함께 제공됩니다. 이제 자체 Python 환경이 제공되는 것을 원하지 않습니다. 아니면 32비트 Python 3.8과 함께 제공되도록 어떻게 처리할 수 있습니까?

도커파일:

#FROM debian:latest
#FROM debian:bookworm
FROM debian:bullseye-slim
#FROM debian:11-slim
#FROM ubuntu:20.04-i386
# for 32bit
RUN dpkg --add-architecture i386

RUN apt-get update -y
RUN apt-get upgrade -y
#RUN apt-get install -y --no-install-recommends python

RUN apt-get remove --purge python3 -y
#RUN apt-get install python3.8:i386 -y
RUN apt-get install net-tools \
        uml-utilities \
    bridge-utils\
    iputils-ping \
    vim \
    openssh-server \
    openssh-client \
    curl \
    gpg \
    psmisc \
    samba \
    samba-common \
    redis \
    unzip \
    file \
    libc-bin \
    dos2unix \
    mosquitto \
    -y

RUN apt-get install libc6:i386 -y
RUN apt-get install lib32stdc++6 -y

관련 정보