Carpeta docker

This commit is contained in:
Axel Axt
2026-08-04 19:25:45 -03:00
parent d95e4012a4
commit 64a0703d97
+17
View File
@@ -0,0 +1,17 @@
FROM php:8.2-apache
# Dependencias del sistema
RUN apt-get update && apt-get install -y \
libpq-dev \
libpng-dev \
libjpeg-dev \
libfreetype6-dev \
postgresql-client \
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install \
pdo \
pdo_pgsql \
gd
# Habilitar mod_rewrite
RUN a2enmod rewrite