This commit is contained in:
Lee
2023-05-03 06:50:19 +01:00
parent c7b18f6fe0
commit 0339b3d4cb
5 changed files with 47 additions and 1 deletions

View File

@ -0,0 +1,10 @@
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