We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 8057791Copy full SHA for 8057791
.gitattributes
@@ -0,0 +1,2 @@
1
+# Auto detect text files and perform LF normalization
2
+* text=auto
Dockerfile
@@ -0,0 +1,9 @@
+FROM php:8.1-fpm-alpine
+
3
+COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
4
5
+RUN apk update
6
+RUN apk add zip unzip libpng-dev libzip-dev
7
+RUN docker-php-ext-install pdo_mysql
8
+RUN docker-php-ext-install gd
9
+RUN docker-php-ext-install zip
0 commit comments