You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
481 B
Docker
21 lines
481 B
Docker
5 years ago
|
FROM alpine:3.9
|
||
|
EXPOSE 9000/tcp
|
||
|
|
||
|
RUN apk add --no-cache php7 php7-fpm \
|
||
|
php7-pdo php7-gd php7-pgsql php7-pdo_pgsql php7-mbstring \
|
||
|
php7-intl php7-xml php7-curl php7-session \
|
||
|
php7-dom php7-fileinfo php7-json \
|
||
5 years ago
|
php7-pcntl php7-posix \
|
||
5 years ago
|
git postgresql-client sudo rsync
|
||
5 years ago
|
|
||
|
ADD startup.sh /
|
||
5 years ago
|
ADD updater.sh /
|
||
5 years ago
|
ADD index.php /
|
||
5 years ago
|
ADD build-prepare.sh /
|
||
5 years ago
|
|
||
|
RUN sed -i.bak 's/^listen = 127.0.0.1:9000/listen = 9000/' /etc/php7/php-fpm.d/www.conf
|
||
|
|
||
5 years ago
|
RUN sh -c /build-prepare.sh
|
||
5 years ago
|
|
||
5 years ago
|
CMD /startup.sh
|