remove DOCKER_HOST

This commit is contained in:
Malte Jürgens 2022-07-23 13:10:03 +02:00
parent 0d88305c2d
commit 36b53d8dc8
No known key found for this signature in database
GPG Key ID: D29FBD5F93C0CFC3
1 changed files with 2 additions and 4 deletions

View File

@ -1,11 +1,9 @@
FROM ubuntu:jammy
RUN apt-get update &&\
apt-get install -y ca-certificates curl wget gnupg lsb-release &&\
apt-get install -y ca-certificates curl gnupg lsb-release &&\
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg &&\
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null &&\
apt-get update &&\
apt-get install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin make &&\
apt-get install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin make wget &&\
apt-get clean
ENV DOCKER_HOST="tcp://docker:2375"