Spaces:
No application file
No application file
| # Use the official PHP image with Apache | |
| FROM php:7.4-apache | |
| # Copy application files to the Apache web root | |
| COPY . /var/www/html/ | |
| # Set the working directory | |
| WORKDIR /var/www/html/ | |
| # Expose port 80 | |
| EXPOSE 80 | |