Files
php/Dockerfile
2019-12-02 22:04:29 +01:00

22 lines
428 B
Docker

##
# Jb Nahan PHP 7.1 container
##
FROM macintoshplus/php:base
MAINTAINER Jean-Baptiste Nahan <814683+macintoshplus@users.noreply.github.com>
ENV DEBIAN_FRONTEND noninteractive
COPY certs/ /root/
COPY install.sh /root/install.sh
RUN chmod +x /root/install.sh
RUN /root/install.sh
COPY bin/fixright /
RUN chmod +x /fixright
VOLUME /sources
WORKDIR /sources