Browse Source

dolibarr: 8.0.3 & zip

Guilhem Saurel 6 years ago
parent
commit
1dfedef5c5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      dolibarr/Dockerfile.fpm

+ 2 - 2
dolibarr/Dockerfile.fpm

@@ -1,6 +1,6 @@
 FROM alpine
 
-ENV DOLI_VERSION 8.0.2
+ENV DOLI_VERSION 8.0.3
 
 RUN wget -q https://github.com/Dolibarr/dolibarr/archive/${DOLI_VERSION}.tar.gz \
  && tar xf ${DOLI_VERSION}.tar.gz \
@@ -10,7 +10,7 @@ RUN wget -q https://github.com/Dolibarr/dolibarr/archive/${DOLI_VERSION}.tar.gz
 FROM php:fpm-alpine
 
 RUN apk --no-cache add postgresql-dev libpng-dev \
- && docker-php-ext-install gd pgsql
+ && docker-php-ext-install gd pgsql zip
 
 COPY --from=0 htdocs /var/www/html
 RUN touch conf/conf.php && mkdir documents && chown www-data documents conf/conf.php