Skip to content

Commit

Permalink
v8.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tmachyshyn committed Sep 18, 2023
1 parent f00e997 commit defce86
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.0.0
ENV ESPOCRM_SHA256 6a4ff9b5fc320f5d7c264599660f9534f61f7c7261af33d2183cc3277d8fbc56
ENV ESPOCRM_VERSION 8.0.1
ENV ESPOCRM_SHA256 6fa0a18b3641bb5fb3e82bd730aeded70d0046e12418726551acc6888df8bf42

WORKDIR /var/www/html

RUN set -ex; \
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-8.0.0.zip" -o EspoCRM.zip; \
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-8.0.1.zip" -o EspoCRM.zip; \
echo "${ESPOCRM_SHA256} *EspoCRM.zip" | sha256sum -c -; \
unzip -q EspoCRM.zip -d /usr/src; \
mv "/usr/src/EspoCRM-8.0.0" /usr/src/espocrm; \
mv "/usr/src/EspoCRM-8.0.1" /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.0.0
ENV ESPOCRM_SHA256 6a4ff9b5fc320f5d7c264599660f9534f61f7c7261af33d2183cc3277d8fbc56
ENV ESPOCRM_VERSION 8.0.1
ENV ESPOCRM_SHA256 6fa0a18b3641bb5fb3e82bd730aeded70d0046e12418726551acc6888df8bf42

WORKDIR /var/www/html

RUN set -ex; \
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-8.0.0.zip" -o EspoCRM.zip; \
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-8.0.1.zip" -o EspoCRM.zip; \
echo "${ESPOCRM_SHA256} *EspoCRM.zip" | sha256sum -c -; \
unzip -q EspoCRM.zip -d /usr/src; \
mv "/usr/src/EspoCRM-8.0.0" /usr/src/espocrm; \
mv "/usr/src/EspoCRM-8.0.1" /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.0.0
ENV ESPOCRM_SHA256 6a4ff9b5fc320f5d7c264599660f9534f61f7c7261af33d2183cc3277d8fbc56
ENV ESPOCRM_VERSION 8.0.1
ENV ESPOCRM_SHA256 6fa0a18b3641bb5fb3e82bd730aeded70d0046e12418726551acc6888df8bf42

WORKDIR /var/www/html

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

Expand Down

0 comments on commit defce86

Please sign in to comment.