Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
gitlab-ci
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wpdesk
Predators
Shopify
Tools
gitlab-ci
Merge requests
!15
feature(core): php 8.2
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
feature(core): php 8.2
feature/php-8.2
into
main
Overview
0
Commits
1
Pipelines
1
Changes
4
Merged
Sebastian Pisula
requested to merge
feature/php-8.2
into
main
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
4
@grola
nie testowałem tego (obraz dla php 8.2), można to jakoś przetestować?
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
a51c9ac8
1 commit,
1 year ago
4 files
+
19
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Docker/php-8.2/Dockerfile
0 → 100644
+
7
−
0
View file @ a51c9ac8
Edit in single-file editor
Open in Web IDE
FROM
php:8.2-cli
RUN
apt-get update
&&
apt-get
install
-y
git libzip-dev zip libicu-dev
&&
docker-php-ext-install zip
&&
docker-php-ext-install bcmath
&&
docker-php-ext-configure intl
&&
docker-php-ext-install intl
\
&&
php
-r
"copy('https://getcomposer.org/installer', 'composer-setup.php');"
\
&&
php composer-setup.php
--install-dir
=
/usr/local/bin
--filename
=
composer
Loading