Skip to content
Snippets Groups Projects
Commit 75fcd0d6 authored by Markus Frosch's avatar Markus Frosch
Browse files

Add jessie

parent c2652207
Branches debootstrap
No related tags found
No related merge requests found
all: all:
$(MAKE) -C jessie/x86_64 $(MAKE) -C jessie
$(MAKE) -C jessie/x86
push: push:
$(MAKE) -C jessie/x86_64 push $(MAKE) -C jessie push
$(MAKE) -C jessie/x86 push
all:
$(MAKE) -C x86_64
$(MAKE) -C x86
push:
$(MAKE) -C x86_64 push
$(MAKE) -C x86 push
FROM i386/debian:jessie
RUN apt update \
&& apt upgrade -y
RUN apt-get install -y \
sudo wget curl tar expect git \
devscripts build-essential lintian ccache pbuilder aptitude
RUN groupadd -g 1000 jenkins \
&& useradd -u 1000 -g 1000 -m jenkins \
&& echo 'Defaults:jenkins !requiretty' | tee -a /etc/sudoers \
&& echo 'jenkins ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers
RUN curl https://packages.icinga.com/icinga.key | apt-key add - \
&& DIST=$(awk -F"[)(]+" '/VERSION=/ {print $2}' /etc/os-release) \
&& echo "deb http://packages.icinga.com/debian icinga-${DIST} main" > /etc/apt/sources.list.d/${DIST}-icinga.list
include ../../image.mk
FROM debian:jessie
RUN apt update \
&& apt upgrade -y
RUN apt-get install -y \
sudo wget curl tar expect git \
devscripts build-essential lintian ccache pbuilder aptitude
RUN groupadd -g 1000 jenkins \
&& useradd -u 1000 -g 1000 -m jenkins \
&& echo 'Defaults:jenkins !requiretty' | tee -a /etc/sudoers \
&& echo 'jenkins ALL=(ALL:ALL) NOPASSWD: ALL' | tee -a /etc/sudoers
RUN curl https://packages.icinga.com/icinga.key | apt-key add - \
&& DIST=$(awk -F"[)(]+" '/VERSION=/ {print $2}' /etc/os-release) \
&& echo "deb http://packages.icinga.com/debian icinga-${DIST} main" > /etc/apt/sources.list.d/${DIST}-icinga.list
include ../../image.mk
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment