21 lines
433 B
Docker
21 lines
433 B
Docker
|
# @app pluie/alpine-apache
|
||
|
# @author a-Sansara https://git.pluie.org/pluie/docker-images
|
||
|
|
||
|
FROM pluie/alpine
|
||
|
|
||
|
MAINTAINER a-Sansara https://github.com/a-sansara
|
||
|
|
||
|
ADD files.tar /scripts
|
||
|
|
||
|
ENV SHENV_NAME=Php7 \
|
||
|
SHENV_COLOR=67 \
|
||
|
HTTP_SERVER_NAME=php7.docker \
|
||
|
WWW_DIR=www \
|
||
|
WWW_INDEX=index.php \
|
||
|
FIX_OWNERSHIP=1 \
|
||
|
TZ=Europe/Paris
|
||
|
|
||
|
EXPOSE 80
|
||
|
|
||
|
RUN bash /scripts/install.sh
|