docker-images/gitea-runner/Dockerfile

19 lines
580 B
Docker
Raw Normal View History

2023-03-27 21:48:50 +01:00
from ubuntu:latest
2023-03-27 21:35:12 +01:00
2023-03-27 22:19:37 +01:00
# Disable interactive mode
ARG DEBIAN_FRONTEND=noninteractive
2023-03-27 21:35:12 +01:00
# Update and install packages
2023-03-27 22:07:42 +01:00
RUN apt update && apt upgrade -y
RUN apt install -y git wget curl
2023-03-27 22:04:51 +01:00
RUN echo "Installed and updated packages"
2023-03-27 21:35:12 +01:00
# Install Docker
2023-03-27 22:19:37 +01:00
RUN wget -q -O /tmp/docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-20.10.23.tgz \
&& tar --extract --file /tmp/docker.tgz --directory /usr/bin --strip-components 1 --no-same-owner docker/docker \
&& rm -rf /tmp/*
RUN echo "Installed Docker"
# Clean up apt
RUN rm -rf /var/lib/apt/lists/*
RUN apt clean