add new deps as reccomded by piwigo team and ffmpeg for popular videojs plugin

This commit is contained in:
thelamer 2019-06-12 21:35:20 -07:00
parent aa13067f43
commit e62aa16440
5 changed files with 62 additions and 0 deletions

View file

@ -11,8 +11,12 @@ RUN \
echo "**** install packages ****" && \
apk add --no-cache --upgrade \
curl \
exiftool \
ffmpeg \
imagemagick \
libjpeg-turbo-utils \
lynx \
mediainfo \
php7-apcu \
php7-cgi \
php7-ctype \
@ -27,6 +31,7 @@ RUN \
php7-pear \
php7-xmlrpc \
php7-xsl \
poppler-utils \
re2c \
unzip \
wget && \

50
Dockerfile.aarch Normal file
View file

@ -0,0 +1,50 @@
FROM lsiobase/nginx:arm64v8-3.9
# set version label
ARG BUILD_DATE
ARG VERSION
ARG PIWIGO_RELEASE
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="sparklyballs"
RUN \
echo "**** install packages ****" && \
apk add --no-cache --upgrade \
curl \
exiftool \
ffmpeg \
imagemagick \
libjpeg-turbo-utils \
lynx \
mediainfo \
php7-apcu \
php7-cgi \
php7-ctype \
php7-curl \
php7-dom \
php7-exif \
php7-gd \
php7-imagick \
php7-ldap \
php7-mysqli \
php7-mysqlnd \
php7-pear \
php7-xmlrpc \
php7-xsl \
poppler-utils \
re2c \
unzip \
wget && \
echo "**** set version tag ****" && \
if [ -z ${PIWIGO_RELEASE+x} ]; then \
PIWIGO_RELEASE=$(curl -sX GET "https://api.github.com/repos/Piwigo/Piwigo/releases/latest" \
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
fi && \
echo ${PIWIGO_RELEASE} > /version.txt
# copy local files
COPY root/ /
# ports and volumes
EXPOSE 80 443
VOLUME /config /pictures

View file

@ -11,8 +11,12 @@ RUN \
echo "**** install packages ****" && \
apk add --no-cache --upgrade \
curl \
exiftool \
ffmpeg \
imagemagick \
libjpeg-turbo-utils \
lynx \
mediainfo \
php7-apcu \
php7-cgi \
php7-ctype \
@ -27,6 +31,7 @@ RUN \
php7-pear \
php7-xmlrpc \
php7-xsl \
poppler-utils \
re2c \
unzip \
wget && \

View file

@ -179,6 +179,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **12.06.19:** - Add ffmpeg and other deps as needed by popular plugins.
* **23.03.19:** - Switching to new Base images, shift to arm32v7 tag.
* **01.03.19:** - Add php-ctype & php-curl.
* **22.02.19:** - Rebasing to alpine 3.9, add php-ldap.

View file

@ -43,6 +43,7 @@ app_setup_nginx_reverse_proxy_block: ""
# changelog
changelogs:
- { date: "12.06.19:", desc: "Add ffmpeg and other deps as needed by popular plugins." }
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
- { date: "01.03.19:", desc: "Add php-ctype & php-curl." }
- { date: "22.02.19:", desc: "Rebasing to alpine 3.9, add php-ldap." }