docker-images/gitea-runner/Dockerfile
Fascinated 400267946e
All checks were successful
docker (ubuntu-latest, 2.38.4)
fixes
2023-03-27 22:07:42 +01:00

12 lines
310 B
Docker

from ubuntu:latest
# Update and install packages
RUN apt update && apt upgrade -y
RUN apt install -y git wget curl
RUN rm -rf /var/lib/apt/lists/*
RUN apt clean
RUN echo "Installed and updated packages"
# Install Docker
RUN curl -sSL https://get.docker.com/ | CHANNEL=stable bash
RUN echo "Installed Docker"