Skip to content

Commit

Permalink
v8.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tmachyshyn committed Feb 8, 2024
1 parent 87c2ea0 commit a70af1a
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 @@ -93,16 +93,16 @@ RUN { \

RUN a2enmod rewrite;

ENV ESPOCRM_VERSION 8.1.3
ENV ESPOCRM_SHA256 bea9be2e0efeb876c45ec32a617a981c3f284096fb20b9189ce4bc30ce5a2b43
ENV ESPOCRM_VERSION 8.1.4
ENV ESPOCRM_SHA256 b6b784e1ac93487fb88d6e400af6e177c74d24de9f815176a56012f021a41b4f

WORKDIR /var/www/html

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

ENV ESPOCRM_VERSION 8.1.3
ENV ESPOCRM_SHA256 bea9be2e0efeb876c45ec32a617a981c3f284096fb20b9189ce4bc30ce5a2b43
ENV ESPOCRM_VERSION 8.1.4
ENV ESPOCRM_SHA256 b6b784e1ac93487fb88d6e400af6e177c74d24de9f815176a56012f021a41b4f

WORKDIR /var/www/html

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

ENV ESPOCRM_VERSION 8.1.3
ENV ESPOCRM_SHA256 bea9be2e0efeb876c45ec32a617a981c3f284096fb20b9189ce4bc30ce5a2b43
ENV ESPOCRM_VERSION 8.1.4
ENV ESPOCRM_SHA256 b6b784e1ac93487fb88d6e400af6e177c74d24de9f815176a56012f021a41b4f

WORKDIR /var/www/html

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

Expand Down

0 comments on commit a70af1a

Please sign in to comment.