docker-images/gitea-runner/Dockerfile
Fascinated 4d18ae3e8e
Some checks failed
docker (ubuntu-latest, 2.38.4)
fixes
2023-03-27 22:04:51 +01:00

11 lines
272 B
Docker

from ubuntu:latest
# Update and install packages
RUN apt install -y git wget
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"