debian - How to install docker in docker container? - Stack ...
stackoverflow.com › questions › 44451859Jun 09, 2017 · FROM golang # RUN cat /etc/*release RUN apt-get update RUN apt-get -y install apt-transport-https ca-certificates curl gnupg2 software-properties-common RUN curl -fsSL https://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 RUN apt-get -y install docker-ce RUN docker run hello-world