-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Part of request #38254 Move test images to an el9 base
- Loading branch information
Showing
3 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
FROM rockylinux:9 | ||
|
||
ARG PHP_BASE | ||
|
||
COPY Tuleap.repo /etc/yum.repos.d/ | ||
|
||
RUN dnf install -v -y epel-release https://rpms.remirepo.net/enterprise/remi-release-9.rpm && \ | ||
dnf -v -y install \ | ||
make \ | ||
tuleap-git-bin \ | ||
openssh \ | ||
${PHP_BASE}-php-cli \ | ||
${PHP_BASE}-php-xml \ | ||
${PHP_BASE}-php-mbstring \ | ||
${PHP_BASE}-php-pdo \ | ||
${PHP_BASE}-php-process \ | ||
${PHP_BASE}-php-zip \ | ||
${PHP_BASE}-php-sodium \ | ||
${PHP_BASE}-php-gd \ | ||
${PHP_BASE}-php-ldap \ | ||
${PHP_BASE}-php-intl \ | ||
${PHP_BASE}-php-mysqlnd \ | ||
${PHP_BASE}-php-ffi \ | ||
${PHP_BASE}-php-pecl-mailparse \ | ||
${PHP_BASE}-php-pecl-redis5 \ | ||
${PHP_BASE}-php-pecl-pcov \ | ||
perl \ | ||
&& dnf clean all && \ | ||
echo 'pcov.enabled = 1' >> /etc/opt/remi/${PHP_BASE}/php.d/40-pcov.ini | ||
|
||
CMD [ "make", "-C", "/tuleap", "phpunit-run-as-owner" ] | ||
|
||
VOLUME ["/tuleap"] |