partial dockerfile

This commit is contained in:
2018-12-12 20:07:59 +01:00
commit 2c02fcce22
2 changed files with 210 additions and 0 deletions

30
Dockerfile Normal file
View File

@@ -0,0 +1,30 @@
FROM alpine:3.8
# https://git.tt-rss.org/fox/tt-rss/wiki/InstallationNotes
# https://github.com/clue/docker-ttrss/blob/master/Dockerfile
# https://github.com/linuxserver/docker-tt-rss/blob/master/Dockerfile
ADD https://git.tt-rss.org/fox/tt-rss/archive/18.12.tar.gz /tmp/ttrss.tar.gz
RUN tar -xzf /tmp/ttrss.tar.gz
RUN \
echo "**** install packages ****" && \
apk add --no-cache \
curl \
php7-apcu \
php7-curl \
php7-dom \
php7-gd \
php7-iconv \
php7-intl \
php7-mcrypt \
php7-pcntl \
php7-pdo_pgsql \
php7-pgsql \
php7-posix \
tar && \
echo "**** link php7 to php ****" && \
ln -sf /usr/bin/php7 /usr/bin/php
#copy config + delete install.php