Skip to content

Commit

Permalink
v7.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tmachyshyn committed Oct 15, 2021
1 parent 49b4919 commit 29ef20d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 18 deletions.
12 changes: 6 additions & 6 deletions apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ RUN set -ex; \
libxml2-dev \
libc-client-dev \
libkrb5-dev \
libldap-common \
libldap2-dev \
libzmq3-dev \
zlib1g-dev \
Expand Down Expand Up @@ -81,19 +82,18 @@ RUN { \

RUN a2enmod rewrite;

ENV ESPOCRM_VERSION 7.0.4
ENV ESPOCRM_SHA256 32944e7bb6fb1637ccbcb16deb29cf9db6725af7e02a816b11b50e237a39b2ec
ENV ESPOCRM_VERSION 7.0.5
ENV ESPOCRM_SHA256 82a47e18fbc07686184ce98b85f8def923de209502b6576e597c7ed03f505e47

WORKDIR /var/www/html

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

COPY ./docker-*.sh /usr/local/bin/

Expand Down
11 changes: 5 additions & 6 deletions fpm-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,18 @@ RUN { \
echo 'date.timezone=UTC'; \
} > ${PHP_INI_DIR}/conf.d/espocrm.ini

ENV ESPOCRM_VERSION 7.0.4
ENV ESPOCRM_SHA256 32944e7bb6fb1637ccbcb16deb29cf9db6725af7e02a816b11b50e237a39b2ec
ENV ESPOCRM_VERSION 7.0.5
ENV ESPOCRM_SHA256 82a47e18fbc07686184ce98b85f8def923de209502b6576e597c7ed03f505e47

WORKDIR /var/www/html

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

COPY ./docker-*.sh /usr/local/bin/

Expand Down
12 changes: 6 additions & 6 deletions fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ RUN set -ex; \
libxml2-dev \
libc-client-dev \
libkrb5-dev \
libldap-common \
libldap2-dev \
libzmq3-dev \
zlib1g-dev \
Expand Down Expand Up @@ -79,19 +80,18 @@ RUN { \
echo 'date.timezone=UTC'; \
} > ${PHP_INI_DIR}/conf.d/espocrm.ini

ENV ESPOCRM_VERSION 7.0.4
ENV ESPOCRM_SHA256 32944e7bb6fb1637ccbcb16deb29cf9db6725af7e02a816b11b50e237a39b2ec
ENV ESPOCRM_VERSION 7.0.5
ENV ESPOCRM_SHA256 82a47e18fbc07686184ce98b85f8def923de209502b6576e597c7ed03f505e47

WORKDIR /var/www/html

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

COPY ./docker-*.sh /usr/local/bin/

Expand Down

0 comments on commit 29ef20d

Please sign in to comment.