File "Dockerfile"
Full Path: C:/wamp64/www/RegistroEquipos/Dockerfile
File size: 366 bytes
MIME-type: text/plain
Charset: utf-8
# Usa la imagen oficial de PHP con Apache
FROM php:8.1-apache
# Instala extensiones necesarias
RUN docker-php-ext-install pdo pdo_mysql mysqli
# Copia el proyecto al contenedor
COPY . /var/www/html/
# Ajusta permisos
RUN chown -R www-data:www-data /var/www/html \
&& chmod -R 755 /var/www/html
# Expone el puerto del servidor Apache
EXPOSE 80