FROM debian:bullseye LABEL Maintainer="Wolfgang Hottgenroth " LABEL ImageName="registry.hottis.de/dockerized/base-build-env" LABEL AlternativeImageName="wollud1969/base-build-env" ARG RELEASETOOL_URL="https://home.hottis.de/gitlab/wolutator/gitlabreleaseuploader/uploads/f97b219a1df1910822b9936a8236dfbd/GitlabReleaseTool.zip" RUN \ apt-get update && \ apt-get install -y make && \ apt-get install -y openssh-client && \ apt-get install -y git && \ apt-get install -y python3 && \ update-alternatives --install /usr/bin/python python /usr/bin/python3.9 1 && \ apt-get install -y python3-requests && \ apt-get install -y python3-pycodestyle && \ apt-get install -y python3-yaml && \ apt-get install -y python3-pip && \ apt-get install -y python3-xmltodict && \ apt-get install -y gpg && \ apt-get install -y apt-transport-https && \ apt-get install -y wget && \ apt-get install -y curl && \ apt-get install -y unzip && \ apt-get install -y zip && \ apt-get install -y vim.tiny && \ apt-get install -y p7zip-full && \ apt-get install -y procps && \ apt-get install -y doxygen && \ rm -rf /var/lib/apt/lists/* && \ cd /tmp && \ wget $RELEASETOOL_URL && \ unzip GitlabReleaseTool.zip && \ chmod 755 gitlabreleaseuploader.py && \ chmod 755 deleterelease.py && \ chmod 755 checksemver.py && \ mv gitlabreleaseuploader.py /usr/bin && \ mv deleterelease.py /usr/bin && \ mv checksemver.py /usr/bin