34 lines
1.0 KiB
Docker
34 lines
1.0 KiB
Docker
FROM debian:latest
|
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
|
|
LABEL ImageName="registry.gitlab.com/wolutator/base-build-env"
|
|
RELEASETOOL_URL="https://gitlab.com/wolutator/gitlabreleaseuploader/uploads/ffc1cc36bbd7e1a56c121f51bf1b4b90/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 python && \
|
|
apt-get install -y python-requests && \
|
|
apt-get install -y python-pycodestyle && \
|
|
apt-get install -y python-yaml && \
|
|
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 && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
cd /tmp && \
|
|
wget $RELEASETOOL_URL && \
|
|
unzip GitlabReleaseTool.zip && \
|
|
chmod 755 gitlabreleaseuploader.py && \
|
|
chmod 755 deleterelease.py && \
|
|
mv gitlabreleaseuploader.py /usr/bin && \
|
|
mv deleterelease.py /usr/bin
|
|
|
|
|
|
|