11 Commits

Author SHA1 Message Date
2d02b0dc15 fix Dockerfile 2021-09-29 16:49:45 +02:00
5074102501 fix Dockerfile 2021-09-29 16:47:23 +02:00
b8f8674ca6 fix Dockerfile 2021-09-29 16:44:08 +02:00
ec5e163cea add jq 2021-05-26 11:26:43 +02:00
cbff25dc3e vim.tiny becomes vim-tiny in bullseye 2021-03-11 12:31:46 +01:00
0b48578d31 ca-certificates also in bullseye image 2021-03-11 12:23:55 +01:00
9e83b1a3c2 fix 2021-03-08 18:34:12 +01:00
11fc38f197 fix 2021-03-08 18:25:30 +01:00
629947cb97 upload to nexus 2021-03-08 18:22:55 +01:00
a2bd559e19 fix for bullseye 2021-01-28 15:04:47 +01:00
a64be0c66a upgrade to bullseye 2021-01-28 14:52:12 +01:00
2 changed files with 9 additions and 5 deletions

View File

@ -1,8 +1,9 @@
FROM debian:buster
FROM debian:bullseye
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
LABEL ImageName="registry.hottis.de/dockerized/base-build-env"
LABEL AlternativeImageName="wollud1969/base-build-env"
LABEL NexusImageName="devnexus.krohne.com:18079/repository/docker-krohne/base-build-env"
ARG RELEASETOOL_URL="https://home.hottis.de/gitlab/wolutator/gitlabreleaseuploader/uploads/f97b219a1df1910822b9936a8236dfbd/GitlabReleaseTool.zip"
@ -15,6 +16,7 @@ RUN \
apt install -y openssh-client && \
apt install -y git && \
apt install -y python3 && \
update-alternatives --install /usr/bin/python python /usr/bin/python3.9 1 && \
apt install -y python3-requests && \
apt install -y python3-pycodestyle && \
apt install -y python3-yaml && \
@ -26,14 +28,12 @@ RUN \
apt install -y curl && \
apt install -y unzip && \
apt install -y zip && \
apt install -y vim.tiny && \
apt install -y vim-tiny && \
apt install -y p7zip-full && \
apt install -y procps && \
apt install -y doxygen && \
apt install -y jq && \
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 && \
wget $RELEASETOOL_URL && \

View File

@ -1,6 +1,6 @@
## Base image for build containers
Based on Debian Buster
Based on Debian ~~Buster~~ Bullseye
Contains additionally:
* make
@ -12,5 +12,9 @@ Contains additionally:
* wget and curl
* zip, unzip and 7z
* vim.tiny
* ps
* doxygen
* GitLab release tool: https://home.hottis.de/gitlab/wolutator/gitlabreleaseuploader including validator for semantic version according to https://semver.org/
Switched to Python 3