docker-freshrss/Dockerfile
2017-03-29 22:39:34 +01:00

43 lines
754 B
Docker
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

FROM lsiobase/alpine.nginx:3.5
MAINTAINER sparklyballs
# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
# install packages
RUN \
apk add --no-cache \
git \
sqlite && \
apk add --no-cache \
--repository http://nl.alpinelinux.org/alpine/edge/main \
icu-libs && \
apk add --no-cache \
--repository http://nl.alpinelinux.org/alpine/edge/community \
php7-ctype \
php7-curl \
php7-dom \
php7-gmp \
php7-iconv \
php7-intl \
php7-mbstring \
php7-mysqlnd \
php7-pdo_mysql \
php7-pdo_pgsql \
php7-pdo_sqlite \
php7-pgsql \
php7-sqlite3 \
php7-xml \
php7-zip \
php7-zlib
# copy local files
COPY root/ /
# ports and volumes
EXPOSE 80 443
VOLUME /config