-
Notifications
You must be signed in to change notification settings - Fork 2
refactor: migrate to PHP 8.4 and Symfony 6.4 #128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
a87cee9 to
c31f95e
Compare
c31f95e to
92b4439
Compare
| RUN addgroup docker \ | ||
| && adduser -S -h /home/docker -u 1000 -G docker docker \ | ||
| && chown -R docker /home/docker /usr/src/app \ | ||
| && apk add --no-cache --virtual=.build-deps \ | ||
| autoconf==2.71-r2 \ | ||
| g++==13.2.1_git20231014-r0 \ | ||
| make==4.4.1-r2 \ | ||
| && docker-php-ext-configure intl \ | ||
| && docker-php-ext-install -j"$(nproc)" intl pdo_mysql \ | ||
| && pecl install apcu \ | ||
| && docker-php-ext-enable apcu intl \ | ||
| $PHPIZE_DEPS \ | ||
| && apk add --no-cache \ | ||
| bash \ | ||
| git \ | ||
| icu-dev \ | ||
| && docker-php-ext-configure \ | ||
| intl \ | ||
| && docker-php-ext-install -j"$(nproc)" \ | ||
| intl \ | ||
| pdo_mysql \ | ||
| && pecl install \ | ||
| apcu \ | ||
| && docker-php-ext-enable \ | ||
| apcu \ | ||
| intl \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tu ne lock plus la version installée ? Hadolint ne crie pas ? 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ce que j'ai voulu faire c'est de ne pas avoir à repasser sur le projet tous les deux jours, c'est pour ça que c'est pas une version de patch que j'ai donné pour php et que j'ai pas précisé de version pour alpine. On a pas de contrainte de prod (qui nous pousse à préciser les versions de paquets).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
C'est pas faux :) Est-ce qu'on peut prévoir un build hebdomadaire avec la CI pour s'assurer que tout build chaque lundi par exemple ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bah il faut rebase chaque branche et chaque commit de chaque module avancé alors... gros boulot. L0 je vais essayer de faire tourner la CI sur chaque commit mais je ne sais pas si on est capable de rebuild chaque semaine.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah oui c'est vrai chaque module a sa propre branche, j'avais un peu zappé cette partie
This PR introduces a major technical overhaul of the advanced training codebase, including the following updates: