Skip to content

Commit

Permalink
v7.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
tmachyshyn committed Mar 31, 2022
1 parent f8f9176 commit 47f7863
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 @@ -82,16 +82,16 @@ RUN { \

RUN a2enmod rewrite;

ENV ESPOCRM_VERSION 7.0.9
ENV ESPOCRM_SHA256 b221f639b8f7a709e7646560cc8ea4883f74f82e4d2556b6952d828df4a77428
ENV ESPOCRM_VERSION 7.0.10
ENV ESPOCRM_SHA256 4b8499adc2129b056faa40666e909fa191248b4623da9c58bd9f1221568d9375

WORKDIR /var/www/html

RUN set -ex; \
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-7.0.9.zip" -o EspoCRM.zip; \
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-7.0.10.zip" -o EspoCRM.zip; \
echo "${ESPOCRM_SHA256} *EspoCRM.zip" | sha256sum -c -; \
unzip -q EspoCRM.zip -d /usr/src; \
mv "/usr/src/EspoCRM-7.0.9" /usr/src/espocrm; \
mv "/usr/src/EspoCRM-7.0.10" /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 @@ -52,16 +52,16 @@ RUN { \
echo 'date.timezone=UTC'; \
} > ${PHP_INI_DIR}/conf.d/espocrm.ini

ENV ESPOCRM_VERSION 7.0.9
ENV ESPOCRM_SHA256 b221f639b8f7a709e7646560cc8ea4883f74f82e4d2556b6952d828df4a77428
ENV ESPOCRM_VERSION 7.0.10
ENV ESPOCRM_SHA256 4b8499adc2129b056faa40666e909fa191248b4623da9c58bd9f1221568d9375

WORKDIR /var/www/html

RUN set -ex; \
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-7.0.9.zip" -o EspoCRM.zip; \
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-7.0.10.zip" -o EspoCRM.zip; \
echo "${ESPOCRM_SHA256} *EspoCRM.zip" | sha256sum -c -; \
unzip -q EspoCRM.zip -d /usr/src; \
mv "/usr/src/EspoCRM-7.0.9" /usr/src/espocrm; \
mv "/usr/src/EspoCRM-7.0.10" /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 @@ -80,16 +80,16 @@ RUN { \
echo 'date.timezone=UTC'; \
} > ${PHP_INI_DIR}/conf.d/espocrm.ini

ENV ESPOCRM_VERSION 7.0.9
ENV ESPOCRM_SHA256 b221f639b8f7a709e7646560cc8ea4883f74f82e4d2556b6952d828df4a77428
ENV ESPOCRM_VERSION 7.0.10
ENV ESPOCRM_SHA256 4b8499adc2129b056faa40666e909fa191248b4623da9c58bd9f1221568d9375

WORKDIR /var/www/html

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

Expand Down

0 comments on commit 47f7863

Please sign in to comment.