Skip to content

Commit 6902d10

Browse files
committed
v 7.0.3
1 parent 8117257 commit 6902d10

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

apache/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,16 @@ RUN { \
8181

8282
RUN a2enmod rewrite;
8383

84-
ENV ESPOCRM_VERSION 7.0.2
85-
ENV ESPOCRM_SHA256 b34447884d6956de7f2327135a7b924d1602a063c911fc7c5607da10007945ee
84+
ENV ESPOCRM_VERSION 7.0.3
85+
ENV ESPOCRM_SHA256 a73273697e794b7663ca71ac8b178895d9fac2a8ae6bba37add4b51733347ec4
8686

8787
WORKDIR /var/www/html
8888

8989
RUN set -ex; \
90-
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-7.0.2.zip" -o EspoCRM.zip; \
90+
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-7.0.3.zip" -o EspoCRM.zip; \
9191
echo "${ESPOCRM_SHA256} *EspoCRM.zip" | sha256sum -c -; \
9292
unzip -q EspoCRM.zip -d /usr/src; \
93-
mv "/usr/src/EspoCRM-7.0.2" /usr/src/espocrm; \
93+
mv "/usr/src/EspoCRM-7.0.3" /usr/src/espocrm; \
9494
rm EspoCRM.zip; \
9595
mkdir /usr/src/espocrm-upgrades; \
9696
chown -R www-data:www-data /usr/src/espocrm /usr/src/espocrm-upgrades

fpm-alpine/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,16 @@ RUN { \
5252
echo 'date.timezone=UTC'; \
5353
} > ${PHP_INI_DIR}/conf.d/espocrm.ini
5454

55-
ENV ESPOCRM_VERSION 7.0.2
56-
ENV ESPOCRM_SHA256 b34447884d6956de7f2327135a7b924d1602a063c911fc7c5607da10007945ee
55+
ENV ESPOCRM_VERSION 7.0.3
56+
ENV ESPOCRM_SHA256 a73273697e794b7663ca71ac8b178895d9fac2a8ae6bba37add4b51733347ec4
5757

5858
WORKDIR /var/www/html
5959

6060
RUN set -ex; \
61-
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-7.0.2.zip" -o EspoCRM.zip; \
61+
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-7.0.3.zip" -o EspoCRM.zip; \
6262
echo "${ESPOCRM_SHA256} *EspoCRM.zip" | sha256sum -c -; \
6363
unzip -q EspoCRM.zip -d /usr/src; \
64-
mv "/usr/src/EspoCRM-7.0.2" /usr/src/espocrm; \
64+
mv "/usr/src/EspoCRM-7.0.3" /usr/src/espocrm; \
6565
rm EspoCRM.zip; \
6666
mkdir /usr/src/espocrm-upgrades; \
6767
chown -R www-data:www-data /usr/src/espocrm /usr/src/espocrm-upgrades

fpm/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,16 +79,16 @@ RUN { \
7979
echo 'date.timezone=UTC'; \
8080
} > ${PHP_INI_DIR}/conf.d/espocrm.ini
8181

82-
ENV ESPOCRM_VERSION 7.0.2
83-
ENV ESPOCRM_SHA256 b34447884d6956de7f2327135a7b924d1602a063c911fc7c5607da10007945ee
82+
ENV ESPOCRM_VERSION 7.0.3
83+
ENV ESPOCRM_SHA256 a73273697e794b7663ca71ac8b178895d9fac2a8ae6bba37add4b51733347ec4
8484

8585
WORKDIR /var/www/html
8686

8787
RUN set -ex; \
88-
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-7.0.2.zip" -o EspoCRM.zip; \
88+
curl -fSL "https://www.espocrm.com/downloads/EspoCRM-7.0.3.zip" -o EspoCRM.zip; \
8989
echo "${ESPOCRM_SHA256} *EspoCRM.zip" | sha256sum -c -; \
9090
unzip -q EspoCRM.zip -d /usr/src; \
91-
mv "/usr/src/EspoCRM-7.0.2" /usr/src/espocrm; \
91+
mv "/usr/src/EspoCRM-7.0.3" /usr/src/espocrm; \
9292
rm EspoCRM.zip; \
9393
mkdir /usr/src/espocrm-upgrades; \
9494
chown -R www-data:www-data /usr/src/espocrm /usr/src/espocrm-upgrades

0 commit comments

Comments
 (0)