Skip to content

Commit

Permalink
v7.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tmachyshyn committed Jan 17, 2023
1 parent 9509db1 commit 6c81725
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 @@ -81,16 +81,16 @@ RUN { \

RUN a2enmod rewrite;

ENV ESPOCRM_VERSION 7.2.7
ENV ESPOCRM_SHA256 76acedeb40516fe8fb2672f87dd69e984273030fea6b33a846ae59c8ac993e82
ENV ESPOCRM_VERSION 7.3.0
ENV ESPOCRM_SHA256 9464aca3ae6d2179312e6227a7d8b4b4493c4fc79ab59117bce9987a080363dc

WORKDIR /var/www/html

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

ENV ESPOCRM_VERSION 7.2.7
ENV ESPOCRM_SHA256 76acedeb40516fe8fb2672f87dd69e984273030fea6b33a846ae59c8ac993e82
ENV ESPOCRM_VERSION 7.3.0
ENV ESPOCRM_SHA256 9464aca3ae6d2179312e6227a7d8b4b4493c4fc79ab59117bce9987a080363dc

WORKDIR /var/www/html

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

ENV ESPOCRM_VERSION 7.2.7
ENV ESPOCRM_SHA256 76acedeb40516fe8fb2672f87dd69e984273030fea6b33a846ae59c8ac993e82
ENV ESPOCRM_VERSION 7.3.0
ENV ESPOCRM_SHA256 9464aca3ae6d2179312e6227a7d8b4b4493c4fc79ab59117bce9987a080363dc

WORKDIR /var/www/html

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

Expand Down

0 comments on commit 6c81725

Please sign in to comment.