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.
|
|
|
FROM alpine:3.12
|
|
|
|
EXPOSE 9000/tcp
|
|
|
|
|
|
|
|
RUN apk add --no-cache dcron 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 \
|
|
|
|
php7-pcntl php7-posix php7-zip php7-openssl \
|
|
|
|
git postgresql-client sudo rsync
|
|
|
|
|
|
|
|
ADD startup.sh /
|
|
|
|
ADD updater.sh /
|
|
|
|
ADD index.php /
|
|
|
|
ADD build-prepare.sh /
|
|
|
|
ADD dcron.sh /
|
|
|
|
ADD backup.sh /etc/periodic/weekly/backup
|
|
|
|
|
|
|
|
RUN sed -i.bak 's/^listen = 127.0.0.1:9000/listen = 9000/' /etc/php7/php-fpm.d/www.conf
|
|
|
|
RUN sed -i.bak 's/\(memory_limit =\) 128M/\1 256M/' /etc/php7/php.ini
|
|
|
|
|
|
|
|
RUN sh -c /build-prepare.sh
|
|
|
|
|
|
|
|
CMD /startup.sh
|