5 Commits
1.3.1 ... 1.5.1

Author SHA1 Message Date
7368b1d9aa add cheetah 2021-08-02 17:31:11 +02:00
8849562ef2 use python 3 2021-08-02 17:20:13 +02:00
1ed81f227a add jq here too 2021-05-26 11:28:08 +02:00
e4503589e2 add ca package 2021-03-11 12:18:24 +01:00
00e348a24c fix 2021-03-08 18:33:35 +01:00
2 changed files with 28 additions and 21 deletions

View File

@ -10,7 +10,7 @@ stages:
variables: variables:
NEXUS_REGISTRY: devnexus.krohne.com:18079/repository/docker-krohne NEXUS_REGISTRY: devnexus.krohne.com:18079/repository/docker-krohne
NEXUS_IMAGE_NAME: $NEXUS_REGISTRY/$CI_PROJECT_PATH NEXUS_IMAGE_NAME: $NEXUS_REGISTRY/$CI_PROJECT_NAME
krohnify: krohnify:
image: registry.hottis.de/dockerized/docker-bash:latest image: registry.hottis.de/dockerized/docker-bash:latest

View File

@ -8,27 +8,33 @@ ARG RELEASETOOL_URL="https://home.hottis.de/gitlab/wolutator/gitlabreleaseupload
RUN \ RUN \
apt-get update && \ apt update && \
apt-get install -y make && \ apt upgrade -y && \
apt-get install -y openssh-client && \ apt install -y ca-certificates && \
apt-get install -y git && \ apt install -y make && \
apt-get install -y python && \ apt install -y openssh-client && \
apt-get install -y python-requests && \ apt install -y git && \
apt-get install -y python-pycodestyle && \ apt install -y python3 && \
apt-get install -y python-yaml && \ apt install -y python3-requests && \
apt-get install -y python-pip && \ apt install -y python3-pycodestyle && \
apt-get install -y python-xmltodict && \ apt install -y python3-yaml && \
apt-get install -y gpg && \ apt install -y python3-pip && \
apt-get install -y apt-transport-https && \ apt install -y python3-xmltodict && \
apt-get install -y wget && \ apt install -y gpg && \
apt-get install -y curl && \ apt install -y apt-transport-https && \
apt-get install -y unzip && \ apt install -y wget && \
apt-get install -y zip && \ apt install -y curl && \
apt-get install -y vim.tiny && \ apt install -y unzip && \
apt-get install -y p7zip-full && \ apt install -y zip && \
apt-get install -y procps && \ apt install -y vim.tiny && \
apt-get install -y doxygen && \ apt install -y p7zip-full && \
apt install -y procps && \
apt install -y doxygen && \
apt install -y jq && \
rm -rf /var/lib/apt/lists/* && \ rm -rf /var/lib/apt/lists/* && \
ln -s /usr/bin/python3 /usr/bin/python && \
ln -s /usr/bin/pip3 /usr/bin/pip && \
pip install Cheetah3 && \
cd /tmp && \ cd /tmp && \
wget $RELEASETOOL_URL && \ wget $RELEASETOOL_URL && \
unzip GitlabReleaseTool.zip && \ unzip GitlabReleaseTool.zip && \
@ -38,3 +44,4 @@ RUN \
mv gitlabreleaseuploader.py /usr/bin && \ mv gitlabreleaseuploader.py /usr/bin && \
mv deleterelease.py /usr/bin && \ mv deleterelease.py /usr/bin && \
mv checksemver.py /usr/bin mv checksemver.py /usr/bin