Selamlar.

Docker ile Jenkins kullanmak istiyorum, aşağıdaki DockerFile ile kurulum yapmak istediğimde hata alıyorum. Sebebi içerik çok eski olduğundan artık containerd.io adında bir apt-get paketinin olmaması, bu durumda ne yapabilirim?

Hata: https://app.warp.dev/block/CCq4B2PdyKQS1CAHYWyROj

DockerFile;
FROM jenkins/jenkins
 
USER root
RUN apt-get update -qq && apt-get install -qqy apt-transport-https ca-certificates curl gnupg2 software-properties-common
RUN curl -fsSL download.docker.com/linux/debian/gpg | apt-key add -
RUN add-apt-repository \
   "deb [arch=amd64] https://download.docker.com/linux/debian \
   $(lsb_release -cs) \
   stable"
RUN apt-get update -qq && apt-get install -qqy docker-ce docker-ce-cli containerd.io
RUN usermod -aG docker jenkins
ENTRYPOINT ["/bin/sh", "-c", "service docker start && /sbin/tini -- /usr/local/bin/jenkins.sh"]