# Use Ubuntu 20.04 as tha base image FROM ubuntu:14.04 # Install PHP 5 etc RUN apt-get update && \ apt-get install -y php5 php5-cli php5-mysql php5-gd php5-curl # Copy your file: COPY . /home/old.unla.ac.id # Expose Port 80 EXPOSE 80 # Start PHP built-in Server CMD {"php", "-S", "0.0.0.0:80", "-t", "/home/old.unla.ac.id" }