Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
Images
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
1
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
d824dc3d
Commit
d824dc3d
authored
4 years ago
by
Erick Hitter
Browse files
Options
Downloads
Patches
Plain Diff
Add images for PHP 7.4 and 8.0
parent
281c9e41
No related branches found
Branches containing commit
No related tags found
1 merge request
!18
Add images for PHP 7.4 and 8.0
Pipeline
#3534
failed with stages
Stage:
Stage:
in 5 minutes and 23 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+36
-0
36 additions, 0 deletions
.gitlab-ci.yml
php/7.4/Dockerfile
+17
-0
17 additions, 0 deletions
php/7.4/Dockerfile
php/8.0/Dockerfile
+17
-0
17 additions, 0 deletions
php/8.0/Dockerfile
with
70 additions
and
0 deletions
.gitlab-ci.yml
+
36
−
0
View file @
d824dc3d
...
...
@@ -125,6 +125,42 @@ build-debian-wp-org-deploy-build-dev:
except
:
-
master
# PHP 8.0
build-php-8.0-master
:
stage
:
deploy
script
:
-
docker build --pull -t "$CI_REGISTRY_IMAGE/php:8.0" ./php/8.0
-
docker push "$CI_REGISTRY_IMAGE/php:8.0"
only
:
-
master
when
:
manual
build-php-8.0-dev
:
stage
:
deploy
script
:
-
docker build --pull -t "$CI_REGISTRY_IMAGE/php:8.0-dev" ./php/8.0
-
docker push "$CI_REGISTRY_IMAGE/php:8.0-dev"
except
:
-
master
# PHP 7.4
build-php-7.4-master
:
stage
:
deploy
script
:
-
docker build --pull -t "$CI_REGISTRY_IMAGE/php:7.4" ./php/7.4
-
docker push "$CI_REGISTRY_IMAGE/php:7.4"
only
:
-
master
when
:
manual
build-php-7.4-dev
:
stage
:
deploy
script
:
-
docker build --pull -t "$CI_REGISTRY_IMAGE/php:7.4-dev" ./php/7.4
-
docker push "$CI_REGISTRY_IMAGE/php:7.4-dev"
except
:
-
master
# PHP 7.3
build-php-7.3-master
:
stage
:
deploy
...
...
This diff is collapsed.
Click to expand it.
php/7.4/Dockerfile
0 → 100644
+
17
−
0
View file @
d824dc3d
FROM
php:7.4-buster
LABEL
maintainer="ethitter"
LABEL
version="1.0"
RUN
apt-get update
\
&&
apt-get
-yqqf
install
lsb-release zip unzip rsync subversion git mysql-client libicu-dev libpng-dev libbz2-dev default-libmysqlclient-dev libzip-dev
--fix-missing
--no-install-recommends
\
&&
apt-get clean
\
&&
rm
-rf
/var/lib/apt/lists/
*
RUN
docker-php-ext-install mbstring mysqli intl gd zip bz2
SHELL
["/bin/bash", "-o", "pipefail", "-c"]
RUN
curl
-sS
https://getcomposer.org/installer | php
--
--install-dir
=
/usr/local/bin
--filename
=
composer
RUN
chmod
+x /usr/local/bin/composer
ENV
PATH=/root/.composer/vendor/bin:$HOME/.composer/vendor/bin:$PATH
This diff is collapsed.
Click to expand it.
php/8.0/Dockerfile
0 → 100644
+
17
−
0
View file @
d824dc3d
FROM
php:8.0-buster
LABEL
maintainer="ethitter"
LABEL
version="1.0"
RUN
apt-get update
\
&&
apt-get
-yqqf
install
lsb-release zip unzip rsync subversion git mysql-client libicu-dev libpng-dev libbz2-dev default-libmysqlclient-dev libzip-dev
--fix-missing
--no-install-recommends
\
&&
apt-get clean
\
&&
rm
-rf
/var/lib/apt/lists/
*
RUN
docker-php-ext-install mbstring mysqli intl gd zip bz2
SHELL
["/bin/bash", "-o", "pipefail", "-c"]
RUN
curl
-sS
https://getcomposer.org/installer | php
--
--install-dir
=
/usr/local/bin
--filename
=
composer
RUN
chmod
+x /usr/local/bin/composer
ENV
PATH=/root/.composer/vendor/bin:$HOME/.composer/vendor/bin:$PATH
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