Skip to content
Snippets Groups Projects

feature(docker): images

Merged Grzegorz Rola requested to merge feature/dockerfile into main
Compare and
4 files
+ 52
8
Compare changes
  • Side-by-side
  • Inline

Files

+ 7
0
FROM php:8.1-cli
RUN apt-get update && apt-get install -y git libzip-dev zip libicu-dev && docker-php-ext-install zip && docker-php-ext-install bcmath && docker-php-ext-configure intl && docker-php-ext-install intl \
&& php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \
&& php composer-setup.php --install-dir=/usr/local/bin --filename=composer
Loading