Create Dockerfile

This commit is contained in:
Pierre Hubert 2018-05-01 16:56:27 +02:00 committed by GitHub
parent d36689722f
commit 907384acd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM ubuntu:bionic
LABEL Description="Image used to deploy / test ComunicWebApp"
ENV DEBIAN_FRONTEND="noninteractive" HOME="/"
RUN apt update && apt upgrade -y
RUN apt install git php7.2 uglifyjs apache2 libapache2-mod-php7.2 -y
#Fix timezone
RUN echo "Europe/Paris" > /etc/timezone; dpkg-reconfigure -f noninteractive tzdata