FROM ubuntu:lastest AS webserver RUN apt-get update && apt-get install -y apache2 WORKDIR /var/www/html COPY ./public/ . CMD ["apache2ctl", "-D", "FOREGROUND"]