FROM debian:latest LABEL Maintainer="Wolfgang Hottgenroth " LABEL ImageName="registry.gitlab.com/wolutator/base-build-env" RUN \ apt-get update && \ apt-get install -y make && \ apt-get install -y openssh-client && \ apt-get install -y git && \ apt-get install -y python && \ apt-get install -y python-requests && \ apt-get install -y python-pycodestyle && \ apt-get install -y gpg && \ apt-get install -y apt-transport-https && \ apt-get install -y wget && \ apt-get install -y curl && \ rm -rf /var/lib/apt/lists/* && \ cd /tmp && \ wget https://gitlab.com/wolutator/gitlabreleaseuploader/uploads/e11f5a3880ffcafca05885e6157be974/gitlabreleaseuploader.py && \ chmod 755 gitlabreleaseuploader.py && \ mv gitlabreleaseuploader.py /usr/bin