Compare commits
5 Commits
1.0.0
...
1.3.1-bull
Author | SHA1 | Date | |
---|---|---|---|
a2bd559e19 | |||
a64be0c66a | |||
964ad65e27 | |||
9eee846ef9
|
|||
9117df9ad1 |
17
Dockerfile
17
Dockerfile
@ -1,10 +1,10 @@
|
||||
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"
|
||||
|
||||
ARG RELEASETOOL_URL="https://home.hottis.de/gitlab/wolutator/gitlabreleaseuploader/uploads/f840b97a0eb64d1de2a6d6d1d4d1529e/GitlabReleaseTool.zip"
|
||||
ARG RELEASETOOL_URL="https://home.hottis.de/gitlab/wolutator/gitlabreleaseuploader/uploads/f97b219a1df1910822b9936a8236dfbd/GitlabReleaseTool.zip"
|
||||
|
||||
|
||||
RUN \
|
||||
@ -12,10 +12,13 @@ RUN \
|
||||
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 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 && \
|
||||
@ -24,6 +27,8 @@ RUN \
|
||||
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 && \
|
||||
|
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user