mirror of
https://github.com/smarty-php/smarty.git
synced 2025-11-18 16:39:24 +01:00
* Add nullable types * Removing deprecated E_STRICT constant from test suite. * Added PHP 8.4 RC1 as test image * PHP version bump in the README.md. * Added PHP 8.4 to CI * Add running tests for PHP 8.4
11 lines
309 B
Docker
11 lines
309 B
Docker
FROM php:8.4-rc-cli-bullseye
|
|
|
|
## Basic utilities
|
|
RUN apt-get update -yqq && apt-get install -y curl apt-utils git zip unzip
|
|
|
|
## Composer
|
|
COPY ./utilities/testrunners/shared/install-composer.sh /root/install-composer.sh
|
|
WORKDIR /root
|
|
RUN sh ./install-composer.sh
|
|
RUN mv ./composer.phar /usr/local/bin/composer
|