Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
Images
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Images
Commits
08d69f9b
Commit
08d69f9b
authored
6 years ago
by
Erick Hitter
Browse files
Options
Downloads
Plain Diff
Merge branch 'add/buster' into 'master'
Add buster image See merge request
!8
parents
ae008b76
5df5f81e
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!8
Add buster image
Pipeline
#734
passed
6 years ago
Stage: test
Stage: deploy
Changes
4
Pipelines
8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+18
-0
18 additions, 0 deletions
.gitlab-ci.yml
debian/buster/Dockerfile
+25
-0
25 additions, 0 deletions
debian/buster/Dockerfile
debian/jessie/Dockerfile
+1
-9
1 addition, 9 deletions
debian/jessie/Dockerfile
debian/stretch/Dockerfile
+1
-9
1 addition, 9 deletions
debian/stretch/Dockerfile
with
45 additions
and
18 deletions
.gitlab-ci.yml
+
18
−
0
View file @
08d69f9b
...
...
@@ -48,6 +48,24 @@ build-golang-dev:
-
docker push "$CI_REGISTRY_IMAGE/golang:latest-dev"
except
:
-
master
# Debian Stretch builds
build-debian-buster-build-master
:
stage
:
deploy
script
:
-
docker build --pull -t "$CI_REGISTRY_IMAGE/debian:buster" ./debian/buster
-
docker push "$CI_REGISTRY_IMAGE/debian:buster"
only
:
-
master
when
:
manual
build-debian-buster-build-dev
:
stage
:
deploy
script
:
-
docker build --pull -t "$CI_REGISTRY_IMAGE/debian:buster-dev" ./debian/buster
-
docker push "$CI_REGISTRY_IMAGE/debian:buster-dev"
except
:
-
master
# Debian Stretch builds
build-debian-stretch-build-master
:
...
...
This diff is collapsed.
Click to expand it.
debian/buster/Dockerfile
0 → 100644
+
25
−
0
View file @
08d69f9b
FROM
debian:buster
LABEL
maintainer="ethitter"
LABEL
version="1.0"
RUN
echo
"deb http://security.debian.org/ buster/updates main"
>>
/etc/apt/sources.list
RUN
apt-get update
\
&&
apt-get
-y
--no-install-recommends
install
\
apt-transport-https
\
lsb-release
\
ca-certificates
\
curl
\
git
\
dh-make
\
build-essential
\
autoconf
\
autotools-dev
\
libpcre3
\
libpcre3-dev
\
libz-dev
\
gnupg
\
libssl-dev
\
&&
apt-get clean
\
&&
rm
-rf
/var/lib/apt/lists/
*
This diff is collapsed.
Click to expand it.
debian/jessie/Dockerfile
+
1
−
9
View file @
08d69f9b
...
...
@@ -6,19 +6,11 @@ LABEL version="1.0"
RUN
echo
"deb http://security.debian.org/ jessie/updates main"
>>
/etc/apt/sources.list
RUN
apt-get update
\
&&
apt-get
-y
qqf
--no-install-recommends
install
\
&&
apt-get
-y
--no-install-recommends
install
\
apt-transport-https
\
lsb-release
\
ca-certificates
\
curl
\
&&
apt-get clean
\
&&
rm
-rf
/var/lib/apt/lists/
*
RUN
curl
-ssL
-o
/etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
RUN
echo
"deb https://packages.sury.org/php/
$(
lsb_release
-sc
)
main"
>
/etc/apt/sources.list.d/php.list
RUN
apt-get update
\
&&
apt-get
-y
--no-install-recommends
install
\
git
\
dh-make
\
build-essential
\
...
...
This diff is collapsed.
Click to expand it.
debian/stretch/Dockerfile
+
1
−
9
View file @
08d69f9b
...
...
@@ -6,19 +6,11 @@ LABEL version="1.0"
RUN
echo
"deb http://security.debian.org/ stretch/updates main"
>>
/etc/apt/sources.list
RUN
apt-get update
\
&&
apt-get
-y
qqf
--no-install-recommends
install
\
&&
apt-get
-y
--no-install-recommends
install
\
apt-transport-https
\
lsb-release
\
ca-certificates
\
curl
\
&&
apt-get clean
\
&&
rm
-rf
/var/lib/apt/lists/
*
RUN
curl
-ssL
-o
/etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
RUN
echo
"deb https://packages.sury.org/php/
$(
lsb_release
-sc
)
main"
>
/etc/apt/sources.list.d/php.list
RUN
apt-get update
\
&&
apt-get
-y
--no-install-recommends
install
\
git
\
dh-make
\
build-essential
\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment