aravin / Dockerfile.txt
ayush-goud's picture
Upload 10 files
6f88715 verified
# 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