This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:latest | |
MAINTAINER Dan Pupius <[email protected]> | |
# Install apache, PHP, and supplimentary programs. openssh-server, curl, and lynx-cur are for debugging the container. | |
RUN apt-get update && apt-get -y upgrade && DEBIAN_FRONTEND=noninteractive apt-get -y install \ | |
apache2 php7.0 php7.0-mysql libapache2-mod-php7.0 curl lynx-cur | |
# Enable apache mods. | |
RUN a2enmod php7.0 | |
RUN a2enmod rewrite |