First Commit

This commit is contained in:
2025-10-30 00:48:54 +09:00
commit 0e6df50a7f
9 changed files with 108 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM php:8.2-apache
RUN apt-get update
RUN apt-get install -y \
libpng-dev \
libjpeg62-turbo-dev \
libfreetype6-dev \
libonig-dev \
libzip-dev \
zip \
unzip
RUN docker-php-ext-configure gd --with-freetype --with-jpeg
RUN docker-php-ext-install gd pdo_mysql mysqli mbstring zip fileinfo
RUN a2enmod rewrite headers
COPY apache2.conf /etc/apache2/conf-enabled/99-custom.conf