mirror of
https://github.com/pierre42100/Docker-ComunicWebAppScratch
synced 2024-11-24 21:19:22 +00:00
10 lines
328 B
Docker
10 lines
328 B
Docker
|
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
|