2019-02-16 23:21:02 +01:00
|
|
|
FROM debian:latest
|
|
|
|
|
2019-03-27 14:20:40 +00:00
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
|
2019-03-27 14:21:36 +00:00
|
|
|
LABEL ImageName="registry.gitlab.com/wolutator/base-build-env"
|
2019-02-16 23:21:02 +01:00
|
|
|
|
|
|
|
|
|
|
|
RUN \
|
|
|
|
apt-get update && \
|
|
|
|
apt-get install -y make && \
|
|
|
|
apt-get install -y openssh-client && \
|
|
|
|
apt-get install -y git && \
|
2019-02-21 15:35:18 +00:00
|
|
|
apt-get install -y python && \
|
2019-05-07 15:55:53 +00:00
|
|
|
apt-get install -y python-requests && \
|
2019-05-30 14:47:08 +02:00
|
|
|
apt-get install -y python-pycodestyle && \
|
2019-05-17 15:12:01 +02:00
|
|
|
apt-get install -y gpg && \
|
|
|
|
apt-get install -y apt-transport-https && \
|
|
|
|
apt-get install -y wget && \
|
2019-04-30 13:23:56 +00:00
|
|
|
apt-get install -y curl && \
|
2019-07-10 15:04:59 +00:00
|
|
|
apt-get install -y unzip && \
|
2019-05-07 15:55:53 +00:00
|
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
|
|
cd /tmp && \
|
2019-05-30 15:03:30 +02:00
|
|
|
wget https://gitlab.com/wolutator/gitlabreleaseuploader/uploads/e11f5a3880ffcafca05885e6157be974/gitlabreleaseuploader.py && \
|
2019-05-30 15:15:16 +02:00
|
|
|
chmod 755 gitlabreleaseuploader.py && \
|
2019-05-07 15:55:53 +00:00
|
|
|
mv gitlabreleaseuploader.py /usr/bin
|
|
|
|
|
2019-02-16 23:21:02 +01:00
|
|
|
|