From 4dae3e84e665cf1f0f2d5ec5170d0235d13a2041 Mon Sep 17 00:00:00 2001 From: Matthieu Rolland Date: Mon, 18 Mar 2024 16:56:08 +0100 Subject: [PATCH] add docker images for PrestaShop 8.1.5 --- images/8.1.5/7.2-apache/Dockerfile | 13 +++++++++++++ images/8.1.5/7.2-fpm/Dockerfile | 13 +++++++++++++ images/8.1.5/7.3-apache/Dockerfile | 13 +++++++++++++ images/8.1.5/7.3-fpm/Dockerfile | 13 +++++++++++++ images/8.1.5/7.4-apache/Dockerfile | 13 +++++++++++++ images/8.1.5/7.4-fpm/Dockerfile | 13 +++++++++++++ images/8.1.5/8.0-apache/Dockerfile | 13 +++++++++++++ images/8.1.5/8.0-fpm/Dockerfile | 13 +++++++++++++ images/8.1.5/8.1-apache/Dockerfile | 13 +++++++++++++ images/8.1.5/8.1-fpm/Dockerfile | 13 +++++++++++++ versions.py | 7 +++++++ 11 files changed, 137 insertions(+) create mode 100644 images/8.1.5/7.2-apache/Dockerfile create mode 100644 images/8.1.5/7.2-fpm/Dockerfile create mode 100644 images/8.1.5/7.3-apache/Dockerfile create mode 100644 images/8.1.5/7.3-fpm/Dockerfile create mode 100644 images/8.1.5/7.4-apache/Dockerfile create mode 100644 images/8.1.5/7.4-fpm/Dockerfile create mode 100644 images/8.1.5/8.0-apache/Dockerfile create mode 100644 images/8.1.5/8.0-fpm/Dockerfile create mode 100644 images/8.1.5/8.1-apache/Dockerfile create mode 100644 images/8.1.5/8.1-fpm/Dockerfile diff --git a/images/8.1.5/7.2-apache/Dockerfile b/images/8.1.5/7.2-apache/Dockerfile new file mode 100644 index 00000000..60bba657 --- /dev/null +++ b/images/8.1.5/7.2-apache/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:7.2-apache +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.5 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.5/prestashop_8.1.5.zip /tmp/prestashop.zip + +# Extract +RUN mkdir -p /tmp/data-ps \ + && unzip -q /tmp/prestashop.zip -d /tmp/data-ps/ \ + && bash /tmp/ps-extractor.sh /tmp/data-ps \ + && rm /tmp/prestashop.zip diff --git a/images/8.1.5/7.2-fpm/Dockerfile b/images/8.1.5/7.2-fpm/Dockerfile new file mode 100644 index 00000000..cd23b04c --- /dev/null +++ b/images/8.1.5/7.2-fpm/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:7.2-fpm +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.5 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.5/prestashop_8.1.5.zip /tmp/prestashop.zip + +# Extract +RUN mkdir -p /tmp/data-ps \ + && unzip -q /tmp/prestashop.zip -d /tmp/data-ps/ \ + && bash /tmp/ps-extractor.sh /tmp/data-ps \ + && rm /tmp/prestashop.zip diff --git a/images/8.1.5/7.3-apache/Dockerfile b/images/8.1.5/7.3-apache/Dockerfile new file mode 100644 index 00000000..18f41aa7 --- /dev/null +++ b/images/8.1.5/7.3-apache/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:7.3-apache +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.5 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.5/prestashop_8.1.5.zip /tmp/prestashop.zip + +# Extract +RUN mkdir -p /tmp/data-ps \ + && unzip -q /tmp/prestashop.zip -d /tmp/data-ps/ \ + && bash /tmp/ps-extractor.sh /tmp/data-ps \ + && rm /tmp/prestashop.zip diff --git a/images/8.1.5/7.3-fpm/Dockerfile b/images/8.1.5/7.3-fpm/Dockerfile new file mode 100644 index 00000000..427e44de --- /dev/null +++ b/images/8.1.5/7.3-fpm/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:7.3-fpm +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.5 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.5/prestashop_8.1.5.zip /tmp/prestashop.zip + +# Extract +RUN mkdir -p /tmp/data-ps \ + && unzip -q /tmp/prestashop.zip -d /tmp/data-ps/ \ + && bash /tmp/ps-extractor.sh /tmp/data-ps \ + && rm /tmp/prestashop.zip diff --git a/images/8.1.5/7.4-apache/Dockerfile b/images/8.1.5/7.4-apache/Dockerfile new file mode 100644 index 00000000..690217e5 --- /dev/null +++ b/images/8.1.5/7.4-apache/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:7.4-apache +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.5 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.5/prestashop_8.1.5.zip /tmp/prestashop.zip + +# Extract +RUN mkdir -p /tmp/data-ps \ + && unzip -q /tmp/prestashop.zip -d /tmp/data-ps/ \ + && bash /tmp/ps-extractor.sh /tmp/data-ps \ + && rm /tmp/prestashop.zip diff --git a/images/8.1.5/7.4-fpm/Dockerfile b/images/8.1.5/7.4-fpm/Dockerfile new file mode 100644 index 00000000..95af1d6a --- /dev/null +++ b/images/8.1.5/7.4-fpm/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:7.4-fpm +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.5 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.5/prestashop_8.1.5.zip /tmp/prestashop.zip + +# Extract +RUN mkdir -p /tmp/data-ps \ + && unzip -q /tmp/prestashop.zip -d /tmp/data-ps/ \ + && bash /tmp/ps-extractor.sh /tmp/data-ps \ + && rm /tmp/prestashop.zip diff --git a/images/8.1.5/8.0-apache/Dockerfile b/images/8.1.5/8.0-apache/Dockerfile new file mode 100644 index 00000000..acd0c7b9 --- /dev/null +++ b/images/8.1.5/8.0-apache/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:8.0-apache +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.5 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.5/prestashop_8.1.5.zip /tmp/prestashop.zip + +# Extract +RUN mkdir -p /tmp/data-ps \ + && unzip -q /tmp/prestashop.zip -d /tmp/data-ps/ \ + && bash /tmp/ps-extractor.sh /tmp/data-ps \ + && rm /tmp/prestashop.zip diff --git a/images/8.1.5/8.0-fpm/Dockerfile b/images/8.1.5/8.0-fpm/Dockerfile new file mode 100644 index 00000000..339c5641 --- /dev/null +++ b/images/8.1.5/8.0-fpm/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:8.0-fpm +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.5 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.5/prestashop_8.1.5.zip /tmp/prestashop.zip + +# Extract +RUN mkdir -p /tmp/data-ps \ + && unzip -q /tmp/prestashop.zip -d /tmp/data-ps/ \ + && bash /tmp/ps-extractor.sh /tmp/data-ps \ + && rm /tmp/prestashop.zip diff --git a/images/8.1.5/8.1-apache/Dockerfile b/images/8.1.5/8.1-apache/Dockerfile new file mode 100644 index 00000000..6c2ce234 --- /dev/null +++ b/images/8.1.5/8.1-apache/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:8.1-apache +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.5 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.5/prestashop_8.1.5.zip /tmp/prestashop.zip + +# Extract +RUN mkdir -p /tmp/data-ps \ + && unzip -q /tmp/prestashop.zip -d /tmp/data-ps/ \ + && bash /tmp/ps-extractor.sh /tmp/data-ps \ + && rm /tmp/prestashop.zip diff --git a/images/8.1.5/8.1-fpm/Dockerfile b/images/8.1.5/8.1-fpm/Dockerfile new file mode 100644 index 00000000..196a757f --- /dev/null +++ b/images/8.1.5/8.1-fpm/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:8.1-fpm +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.5 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.5/prestashop_8.1.5.zip /tmp/prestashop.zip + +# Extract +RUN mkdir -p /tmp/data-ps \ + && unzip -q /tmp/prestashop.zip -d /tmp/data-ps/ \ + && bash /tmp/ps-extractor.sh /tmp/data-ps \ + && rm /tmp/prestashop.zip diff --git a/versions.py b/versions.py index eca5d43c..813fa07f 100644 --- a/versions.py +++ b/versions.py @@ -233,6 +233,13 @@ '8.0', '8.1', ), + '8.1.5': ( + '7.2', + '7.3', + '7.4', + '8.0', + '8.1', + ), 'nightly': ( '8.1', '8.2',