Skip to content

Commit

Permalink
v8.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tmachyshyn committed Sep 9, 2024
1 parent a61c090 commit c75f6de
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -92,16 +92,16 @@ RUN { \

RUN a2enmod rewrite;

ENV ESPOCRM_VERSION 8.3.6
ENV ESPOCRM_SHA256 5569eb608d27b2a146e87246c791c9a35901563c6ece28bae3cc019dc9d5cabd
ENV ESPOCRM_VERSION 8.4.0
ENV ESPOCRM_SHA256 5ddd51386a90cf5ac075694832e057043f0af5a081c04edefb5d83eb8c509b56

WORKDIR /var/www/html

RUN set -ex; \
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-8.3.6.zip" -o EspoCRM.zip; \
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-8.4.0.zip" -o EspoCRM.zip; \
echo "${ESPOCRM_SHA256} *EspoCRM.zip" | sha256sum -c -; \
unzip -q EspoCRM.zip -d /usr/src; \
mv "/usr/src/EspoCRM-8.3.6" /usr/src/espocrm; \
mv "/usr/src/EspoCRM-8.4.0" /usr/src/espocrm; \
rm EspoCRM.zip; \
chown -R www-data:www-data /usr/src/espocrm

Expand Down
8 changes: 4 additions & 4 deletions fpm-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ RUN { \
echo 'date.timezone=UTC'; \
} > ${PHP_INI_DIR}/conf.d/espocrm.ini

ENV ESPOCRM_VERSION 8.3.6
ENV ESPOCRM_SHA256 5569eb608d27b2a146e87246c791c9a35901563c6ece28bae3cc019dc9d5cabd
ENV ESPOCRM_VERSION 8.4.0
ENV ESPOCRM_SHA256 5ddd51386a90cf5ac075694832e057043f0af5a081c04edefb5d83eb8c509b56

WORKDIR /var/www/html

RUN set -ex; \
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-8.3.6.zip" -o EspoCRM.zip; \
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-8.4.0.zip" -o EspoCRM.zip; \
echo "${ESPOCRM_SHA256} *EspoCRM.zip" | sha256sum -c -; \
unzip -q EspoCRM.zip -d /usr/src; \
mv "/usr/src/EspoCRM-8.3.6" /usr/src/espocrm; \
mv "/usr/src/EspoCRM-8.4.0" /usr/src/espocrm; \
rm EspoCRM.zip; \
chown -R www-data:www-data /usr/src/espocrm

Expand Down
8 changes: 4 additions & 4 deletions fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -90,16 +90,16 @@ RUN { \
echo 'date.timezone=UTC'; \
} > ${PHP_INI_DIR}/conf.d/espocrm.ini

ENV ESPOCRM_VERSION 8.3.6
ENV ESPOCRM_SHA256 5569eb608d27b2a146e87246c791c9a35901563c6ece28bae3cc019dc9d5cabd
ENV ESPOCRM_VERSION 8.4.0
ENV ESPOCRM_SHA256 5ddd51386a90cf5ac075694832e057043f0af5a081c04edefb5d83eb8c509b56

WORKDIR /var/www/html

RUN set -ex; \
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-8.3.6.zip" -o EspoCRM.zip; \
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-8.4.0.zip" -o EspoCRM.zip; \
echo "${ESPOCRM_SHA256} *EspoCRM.zip" | sha256sum -c -; \
unzip -q EspoCRM.zip -d /usr/src; \
mv "/usr/src/EspoCRM-8.3.6" /usr/src/espocrm; \
mv "/usr/src/EspoCRM-8.4.0" /usr/src/espocrm; \
rm EspoCRM.zip; \
chown -R www-data:www-data /usr/src/espocrm

Expand Down

0 comments on commit c75f6de

Please sign in to comment.