Compare commits

...

5 Commits
3.3.0 ... 3.3.3

Author SHA1 Message Date
Sam
0ed2a1cf4c 3.3.3 2017-05-16 09:38:58 +02:00
Sam
43bb842598 3.3.1 2017-05-10 09:09:46 +02:00
Sam
8c1c2488bd fix alpine error 2017-05-03 16:15:34 +02:00
Sam
baf2459f72 alpine error fix 2017-05-03 14:37:55 +02:00
Sam
89ad8ad2bf fix alpine chown 2017-05-03 11:28:15 +02:00
2 changed files with 4 additions and 4 deletions

View File

@@ -44,7 +44,7 @@ RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local
# DOWNLOAD AND INSTALL INVOICE NINJA
#####
ENV INVOICENINJA_VERSION 3.3.0
ENV INVOICENINJA_VERSION 3.3.3
RUN curl -o invoiceninja.tar.gz -SL https://github.com/hillelcoren/invoice-ninja/archive/v${INVOICENINJA_VERSION}.tar.gz \
&& tar -xzf invoiceninja.tar.gz -C /var/www/ \

View File

@@ -28,7 +28,8 @@ RUN ln -s /usr/include/x86_64-linux-gnu/gmp.h /usr/local/include/ \
&& rm ${PHANTOMJS}.tar.bz2 \
&& mv ${PHANTOMJS} /usr/local/share \
&& ln -sf /usr/local/share/${PHANTOMJS}/bin/phantomjs /usr/local/bin \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/* \
&& echo "php_admin_value[error_reporting] = E_ALL & ~E_NOTICE & ~E_WARNING & ~E_STRICT & ~E_DEPRECATED">>/usr/local/etc/php-fpm.d/www.conf
# set recommended PHP.ini settings
# see https://secure.php.net/manual/en/opcache.installation.php
@@ -51,7 +52,7 @@ RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local
# DOWNLOAD AND INSTALL INVOICE NINJA
#####
ENV INVOICENINJA_VERSION 3.3.0
ENV INVOICENINJA_VERSION 3.3.3
RUN curl -o invoiceninja.tar.gz -SL https://github.com/hillelcoren/invoice-ninja/archive/v${INVOICENINJA_VERSION}.tar.gz \
&& tar -xzf invoiceninja.tar.gz -C /var/www/ \
@@ -62,7 +63,6 @@ RUN curl -o invoiceninja.tar.gz -SL https://github.com/hillelcoren/invoice-ninja
&& chown -R www-data:www-data /var/www/app/bootstrap/cache \
&& mv /var/www/app/storage /var/www/app/docker-backup-storage \
&& mv /var/www/app/public /var/www/app/docker-backup-public \
&& chown -R www-data:www-data /var/www/app/storage \
&& rm -rf /var/www/app/docs /var/www/app/tests