From 639357be52a0087626a561d0c4eb70382bdf1904 Mon Sep 17 00:00:00 2001 From: matks Date: Mon, 19 Feb 2024 14:20:42 +0100 Subject: [PATCH 1/2] Add 8.1.4 version to matrix --- versions.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/versions.py b/versions.py index 04a1c2c2..d82a9a5d 100644 --- a/versions.py +++ b/versions.py @@ -226,6 +226,13 @@ '8.0', '8.1', ), + '8.1.4': ( + '7.2', + '7.3', + '7.4', + '8.0', + '8.1', + ), 'nightly': ( '7.2', '7.3', From 6dae3e4e8da6100bb36c7cf15d0b891054b82b44 Mon Sep 17 00:00:00 2001 From: matks Date: Mon, 19 Feb 2024 14:24:17 +0100 Subject: [PATCH 2/2] Add 8.1.4 docker images --- images/8.1.4/7.2-apache/Dockerfile | 13 +++++++++++++ images/8.1.4/7.2-fpm/Dockerfile | 13 +++++++++++++ images/8.1.4/7.3-apache/Dockerfile | 13 +++++++++++++ images/8.1.4/7.3-fpm/Dockerfile | 13 +++++++++++++ images/8.1.4/7.4-apache/Dockerfile | 13 +++++++++++++ images/8.1.4/7.4-fpm/Dockerfile | 13 +++++++++++++ images/8.1.4/8.0-apache/Dockerfile | 13 +++++++++++++ images/8.1.4/8.0-fpm/Dockerfile | 13 +++++++++++++ images/8.1.4/8.1-apache/Dockerfile | 13 +++++++++++++ images/8.1.4/8.1-fpm/Dockerfile | 13 +++++++++++++ 10 files changed, 130 insertions(+) create mode 100644 images/8.1.4/7.2-apache/Dockerfile create mode 100644 images/8.1.4/7.2-fpm/Dockerfile create mode 100644 images/8.1.4/7.3-apache/Dockerfile create mode 100644 images/8.1.4/7.3-fpm/Dockerfile create mode 100644 images/8.1.4/7.4-apache/Dockerfile create mode 100644 images/8.1.4/7.4-fpm/Dockerfile create mode 100644 images/8.1.4/8.0-apache/Dockerfile create mode 100644 images/8.1.4/8.0-fpm/Dockerfile create mode 100644 images/8.1.4/8.1-apache/Dockerfile create mode 100644 images/8.1.4/8.1-fpm/Dockerfile diff --git a/images/8.1.4/7.2-apache/Dockerfile b/images/8.1.4/7.2-apache/Dockerfile new file mode 100644 index 00000000..d82f88f3 --- /dev/null +++ b/images/8.1.4/7.2-apache/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:7.2-apache +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.4 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.4/prestashop_8.1.4.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.4/7.2-fpm/Dockerfile b/images/8.1.4/7.2-fpm/Dockerfile new file mode 100644 index 00000000..c02c6505 --- /dev/null +++ b/images/8.1.4/7.2-fpm/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:7.2-fpm +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.4 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.4/prestashop_8.1.4.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.4/7.3-apache/Dockerfile b/images/8.1.4/7.3-apache/Dockerfile new file mode 100644 index 00000000..6a35c1e2 --- /dev/null +++ b/images/8.1.4/7.3-apache/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:7.3-apache +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.4 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.4/prestashop_8.1.4.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.4/7.3-fpm/Dockerfile b/images/8.1.4/7.3-fpm/Dockerfile new file mode 100644 index 00000000..38d887e0 --- /dev/null +++ b/images/8.1.4/7.3-fpm/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:7.3-fpm +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.4 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.4/prestashop_8.1.4.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.4/7.4-apache/Dockerfile b/images/8.1.4/7.4-apache/Dockerfile new file mode 100644 index 00000000..1c441bed --- /dev/null +++ b/images/8.1.4/7.4-apache/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:7.4-apache +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.4 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.4/prestashop_8.1.4.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.4/7.4-fpm/Dockerfile b/images/8.1.4/7.4-fpm/Dockerfile new file mode 100644 index 00000000..adc88243 --- /dev/null +++ b/images/8.1.4/7.4-fpm/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:7.4-fpm +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.4 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.4/prestashop_8.1.4.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.4/8.0-apache/Dockerfile b/images/8.1.4/8.0-apache/Dockerfile new file mode 100644 index 00000000..ef7156a4 --- /dev/null +++ b/images/8.1.4/8.0-apache/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:8.0-apache +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.4 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.4/prestashop_8.1.4.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.4/8.0-fpm/Dockerfile b/images/8.1.4/8.0-fpm/Dockerfile new file mode 100644 index 00000000..c2a64b77 --- /dev/null +++ b/images/8.1.4/8.0-fpm/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:8.0-fpm +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.4 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.4/prestashop_8.1.4.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.4/8.1-apache/Dockerfile b/images/8.1.4/8.1-apache/Dockerfile new file mode 100644 index 00000000..9d28da58 --- /dev/null +++ b/images/8.1.4/8.1-apache/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:8.1-apache +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.4 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.4/prestashop_8.1.4.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.4/8.1-fpm/Dockerfile b/images/8.1.4/8.1-fpm/Dockerfile new file mode 100644 index 00000000..02935522 --- /dev/null +++ b/images/8.1.4/8.1-fpm/Dockerfile @@ -0,0 +1,13 @@ +FROM prestashop/base:8.1-fpm +LABEL maintainer="PrestaShop Core Team " + +ENV PS_VERSION 8.1.4 + +# Get PrestaShop +ADD https://github.com/PrestaShop/PrestaShop/releases/download/8.1.4/prestashop_8.1.4.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