first commit

This commit is contained in:
Uther
2024-08-20 21:08:23 +02:00
commit a46fcb28b0
80 changed files with 13840 additions and 0 deletions

18
phpdocker/php-fpm/Dockerfile Executable file
View File

@@ -0,0 +1,18 @@
FROM phpdockerio/php:8.3-fpm
WORKDIR "/phanta-track"
RUN apt-get update \
&& apt-get -y --no-install-recommends install \
php8.3-bcmath \
php8.3-bz2 \
php8.3-cgi \
php8.3-decimal \
php8.3-gd \
php8.3-mcrypt \
php8.3-msgpack \
php8.3-mysql \
php8.3-protobuf \
php8.3-tidy \
php8.3-uuid \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*