Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
debian
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Docker Build Images
debian
Merge requests
!1
Drop Debian Jessie
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Drop Debian Jessie
feature/jessie
into
master
Overview
1
Commits
1
Pipelines
2
Changes
7
Merged
Alexander A. Klimov
requested to merge
feature/jessie
into
master
4 years ago
Overview
1
Commits
1
Pipelines
2
Changes
7
Expand
0
0
Merge request reports
Compare
master
version 1
38d28449
4 years ago
master (base)
and
latest version
latest version
36689db4
1 commit,
4 years ago
version 1
38d28449
1 commit,
4 years ago
7 files
+
1
−
63
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
jessie/x86/Dockerfile deleted
100644 → 0
+
0
−
28
Options
FROM
i386/debian:jessie
ENV
DEBIAN_FRONTEND=noninteractive
RUN
apt-get update
\
&&
apt-get upgrade
-y
RUN
apt-get
install
-y
\
sudo
wget curl
tar
expect git
\
devscripts build-essential lintian ccache pbuilder aptitude apt-utils
RUN
echo
"deb http://archive.debian.org/debian jessie-backports main"
>
/etc/apt/sources.list.d/backports.list
\
&&
echo
'Acquire::Check-Valid-Until no;'
>
/etc/apt/apt.conf.d/99no-check-valid-until
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
RUN
groupadd
-g
1000 build
\
&&
useradd
-u
1000
-g
1000
-m
build
\
&&
echo
'Defaults:build !requiretty'
|
tee
-a
/etc/sudoers
\
&&
echo
'build ALL=(ALL:ALL) NOPASSWD: ALL'
|
tee
-a
/etc/sudoers
\
&&
chown
build.build /usr/local/bin
USER
build
RUN
git clone https://git.icinga.com/build-docker/scripts.git /usr/local/bin
ENTRYPOINT
["/usr/local/bin/icinga-build-entrypoint"]
CMD
["icinga-build-package"]
Loading