mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-05 08:40:54 +02:00
11 lines
297 B
Docker
11 lines
297 B
Docker
FROM php:8.1-cli
|
|
|
|
## 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
|