Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
I
Images
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Docker
Images
Commits
08d69f9b
Commit
08d69f9b
authored
Feb 25, 2019
by
Erick Hitter
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'add/buster' into 'master'
Add buster image See merge request
!8
parents
ae008b76
5df5f81e
Pipeline
#734
passed with stages
in 1 minute and 53 seconds
Changes
4
Pipelines
8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
45 additions
and
18 deletions
+45
-18
.gitlab-ci.yml
.gitlab-ci.yml
+18
-0
debian/buster/Dockerfile
debian/buster/Dockerfile
+25
-0
debian/jessie/Dockerfile
debian/jessie/Dockerfile
+1
-9
debian/stretch/Dockerfile
debian/stretch/Dockerfile
+1
-9
No files found.
.gitlab-ci.yml
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
:
...
...
debian/buster/Dockerfile
0 → 100644
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/
*
debian/jessie/Dockerfile
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
\
...
...
debian/stretch/Dockerfile
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
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment