Docker-ComunicWebAppScratch/Dockerfile

10 lines
332 B
Docker
Raw Permalink Normal View History

2018-05-01 14:56:27 +00:00
FROM ubuntu:bionic
LABEL Description="Image used to deploy / test ComunicWebApp"
ENV DEBIAN_FRONTEND="noninteractive" HOME="/"
RUN apt update && apt upgrade -y
2019-01-21 07:01:46 +00:00
RUN apt install git php7.2 uglifyjs apache2 libapache2-mod-php7.2 zip -y
2018-05-01 14:56:27 +00:00
#Fix timezone
RUN echo "Europe/Paris" > /etc/timezone; dpkg-reconfigure -f noninteractive tzdata