2023-03-27 20:48:50 +00:00
|
|
|
from ubuntu:latest
|
2023-03-27 20:35:12 +00:00
|
|
|
|
|
|
|
# Update and install packages
|
2023-03-27 21:07:42 +00:00
|
|
|
RUN apt update && apt upgrade -y
|
|
|
|
RUN apt install -y git wget curl
|
2023-03-27 21:04:51 +00:00
|
|
|
RUN rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN apt clean
|
|
|
|
RUN echo "Installed and updated packages"
|
2023-03-27 20:35:12 +00:00
|
|
|
|
|
|
|
# Install Docker
|
2023-03-27 21:04:51 +00:00
|
|
|
RUN curl -sSL https://get.docker.com/ | CHANNEL=stable bash
|
2023-03-27 20:35:12 +00:00
|
|
|
RUN echo "Installed Docker"
|