Carpeta docker
This commit is contained in:
@@ -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
|
||||||
Reference in New Issue
Block a user