mirror of
https://github.com/smarty-php/smarty.git
synced 2025-07-29 15:37:14 +02:00
11 lines
306 B
Docker
11 lines
306 B
Docker
FROM php:8.4-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
|