Provides an small docker image which contains basic things for cloning, executing python scripts and helm. This container is mostly used to execute steps on repositories during the build. The reason for this is, that the gitlab standard ci has some package not, and the most base images missing some thing to execute the required things ,so this new image closes the gap in the build.
# Depedencies
Depends on the python:3.11-alpine base image
# Bootstrap
It's used within ci execution by choosing this image:
If anything is missing in the build CI just add more packages by using apk to the docker image section:
```
RUN apk update
RUN apk add bash
RUN apk add git
RUN apk add curl
RUN apk add openssl
RUN apk add maven
RUN apk add make
RUN apk add build-base
```
Provides an small docker image which contains basic things for cloning, executing python scripts and helm. This container is mostly used to execute steps on repositories during the build.