github.com/kubeshop/testkube@v1.17.23/contrib/executor/init/build/agent/Dockerfile (about)

     1  # syntax=docker/dockerfile:1
     2  FROM ubuntu
     3  COPY init /bin/runner
     4  RUN apt-get update
     5  RUN apt-get install ca-certificates git curl -y
     6  WORKDIR /root/
     7  RUN git config --global user.name "testkube"
     8  RUN chmod a=rw /root/.gitconfig
     9  ENTRYPOINT ["/bin/runner"]