mirror of
https://github.com/macintoshplus/php.git
synced 2026-03-25 17:32:05 +01:00
21 lines
380 B
Docker
21 lines
380 B
Docker
##
|
|
# Jb Nahan PHP 7.0 container
|
|
##
|
|
|
|
FROM macintoshplus/php:base
|
|
MAINTAINER Jean-Baptiste Nahan <jean-baptiste@nahan.fr>
|
|
|
|
# Add Source List
|
|
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
|
|
|