Hi,
We have an issue downloading docker through https://test.docker.com/ script. Please see the Dockerfile content below. When i do "cat /etc/debian_version", it shows 11.2. But if you look at the actual script, there is no logic for version 11. I could see it is only checking for version 8, 9 and 10. we are getting "The repository 'https://download.docker.com/linux/debian 11 Release' does not have a Release file" error. Can you please fix this issue?
FROM python:3.7
RUN apt-get update -y \
&& apt-get install -y \
gnupg \
gnupg2 \
&& apt-get clean
RUN pip install pip==20.2.3
# install docker
RUN cat /etc/debian_version
RUN curl -fsSL https://test.docker.com/ | sh



Hi,
We have an issue downloading docker through https://test.docker.com/ script. Please see the Dockerfile content below. When i do "cat /etc/debian_version", it shows 11.2. But if you look at the actual script, there is no logic for version 11. I could see it is only checking for version 8, 9 and 10. we are getting "The repository 'https://download.docker.com/linux/debian 11 Release' does not have a Release file" error. Can you please fix this issue?