mirror of
https://github.com/macintoshplus/php.git
synced 2026-03-24 00:42:11 +01:00
25 lines
451 B
Docker
25 lines
451 B
Docker
##
|
|
# Jb Nahan PHP 7.2 container
|
|
##
|
|
|
|
FROM macintoshplus/php:base
|
|
MAINTAINER Jean-Baptiste Nahan <814683+macintoshplus@users.noreply.github.com>
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
ARG uid=1008
|
|
ARG gid=1008
|
|
|
|
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
|
|
|