FROM ubuntu:22.04 # Configure DPKG, Run APT Update & Install Packages RUN set -e \ && dpkg --configure -a \ && apt update -y \ && apt install curl apt-utils -y # Install Docker RUN curl -sSL https://get.docker.com/ | CHANNEL=stable bash