10 lines
244 B
Plaintext
10 lines
244 B
Plaintext
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 |