Skip to content

Commit

Permalink
Add docker for 9.0.x branch
Browse files Browse the repository at this point in the history
  • Loading branch information
jolelievre committed Oct 29, 2024
1 parent 3cba55c commit a589264
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 0 deletions.
9 changes: 9 additions & 0 deletions images/9.0.x/8.1-apache/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM prestashop/base:8.1-apache
LABEL maintainer="PrestaShop Core Team <[email protected]>"

RUN apt update
RUN apt -y install git

RUN git clone -b 9.0.x https://github.com/PrestaShop/PrestaShop.git /tmp/data-ps

CMD ["/tmp/docker_run.sh"]
9 changes: 9 additions & 0 deletions images/9.0.x/8.1-fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM prestashop/base:8.1-fpm
LABEL maintainer="PrestaShop Core Team <[email protected]>"

RUN apt update
RUN apt -y install git

RUN git clone -b 9.0.x https://github.com/PrestaShop/PrestaShop.git /tmp/data-ps

CMD ["/tmp/docker_run.sh"]
9 changes: 9 additions & 0 deletions images/9.0.x/8.2-apache/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM prestashop/base:8.2-apache
LABEL maintainer="PrestaShop Core Team <[email protected]>"

RUN apt update
RUN apt -y install git

RUN git clone -b 9.0.x https://github.com/PrestaShop/PrestaShop.git /tmp/data-ps

CMD ["/tmp/docker_run.sh"]
9 changes: 9 additions & 0 deletions images/9.0.x/8.2-fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM prestashop/base:8.2-fpm
LABEL maintainer="PrestaShop Core Team <[email protected]>"

RUN apt update
RUN apt -y install git

RUN git clone -b 9.0.x https://github.com/PrestaShop/PrestaShop.git /tmp/data-ps

CMD ["/tmp/docker_run.sh"]
9 changes: 9 additions & 0 deletions images/9.0.x/8.3-apache/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM prestashop/base:8.3-apache
LABEL maintainer="PrestaShop Core Team <[email protected]>"

RUN apt update
RUN apt -y install git

RUN git clone -b 9.0.x https://github.com/PrestaShop/PrestaShop.git /tmp/data-ps

CMD ["/tmp/docker_run.sh"]
9 changes: 9 additions & 0 deletions images/9.0.x/8.3-fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM prestashop/base:8.3-fpm
LABEL maintainer="PrestaShop Core Team <[email protected]>"

RUN apt update
RUN apt -y install git

RUN git clone -b 9.0.x https://github.com/PrestaShop/PrestaShop.git /tmp/data-ps

CMD ["/tmp/docker_run.sh"]

0 comments on commit a589264

Please sign in to comment.