├── Dockerfile └── README.md /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM fedora:21 2 | 3 | RUN yum update -y -q; yum clean all 4 | RUN yum install -y -q git sudo wget tar; yum clean all 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dockerfile to build fedora with git, wget and sudo 2 | 3 | This is mainly to be used with Drone CI as a base image. 4 | --------------------------------------------------------------------------------