# 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.6 php5.6-cli php5.6-mysql php5.6-gd php5.6-mbstring php5.6-curl php5.6-xml # 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" }