add socat

This commit is contained in:
Christopher 2020-10-24 13:17:22 +02:00
parent c8aca587e0
commit a4277a3648
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ WORKDIR /var/www/html
RUN apt-get update && apt-get -y install apt-transport-https ca-certificates curl gnupg-agent 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 && apt-get -y install docker-ce-cli
RUN apt-get update && apt-get -y install docker-ce-cli socat
RUN touch /var/run/docker.sock && chmod 777 /var/run/docker.sock