Skip to content

Commit ff2200b

Browse files
authored
Merge pull request #398 from PrestaShop/90x-docker
Add possibility to build docker based on a branch
2 parents c3333f3 + c7c71e3 commit ff2200b

File tree

19 files changed

+106
-163
lines changed

19 files changed

+106
-163
lines changed

β€ŽDockerfile-branch.modelβ€Ž

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM prestashop/base:$container_version
2+
LABEL maintainer="PrestaShop Core Team <[email protected]>"
3+
4+
RUN apt update
5+
RUN apt -y install git
6+
7+
RUN git clone -b $ps_version https://github.com/PrestaShop/PrestaShop.git /tmp/data-ps
8+
9+
CMD ["/tmp/docker_run.sh"]
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM prestashop/base:8.1-apache
2+
LABEL maintainer="PrestaShop Core Team <[email protected]>"
3+
4+
RUN apt update
5+
RUN apt -y install git
6+
7+
RUN git clone -b 9.0.x https://github.com/PrestaShop/PrestaShop.git /tmp/data-ps
8+
9+
CMD ["/tmp/docker_run.sh"]
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM prestashop/base:8.1-fpm
2+
LABEL maintainer="PrestaShop Core Team <[email protected]>"
3+
4+
RUN apt update
5+
RUN apt -y install git
6+
7+
RUN git clone -b 9.0.x https://github.com/PrestaShop/PrestaShop.git /tmp/data-ps
8+
9+
CMD ["/tmp/docker_run.sh"]
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM prestashop/base:8.2-apache
2+
LABEL maintainer="PrestaShop Core Team <[email protected]>"
3+
4+
RUN apt update
5+
RUN apt -y install git
6+
7+
RUN git clone -b 9.0.x https://github.com/PrestaShop/PrestaShop.git /tmp/data-ps
8+
9+
CMD ["/tmp/docker_run.sh"]
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM prestashop/base:8.2-fpm
2+
LABEL maintainer="PrestaShop Core Team <[email protected]>"
3+
4+
RUN apt update
5+
RUN apt -y install git
6+
7+
RUN git clone -b 9.0.x https://github.com/PrestaShop/PrestaShop.git /tmp/data-ps
8+
9+
CMD ["/tmp/docker_run.sh"]
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM prestashop/base:8.3-apache
2+
LABEL maintainer="PrestaShop Core Team <[email protected]>"
3+
4+
RUN apt update
5+
RUN apt -y install git
6+
7+
RUN git clone -b 9.0.x https://github.com/PrestaShop/PrestaShop.git /tmp/data-ps
8+
9+
CMD ["/tmp/docker_run.sh"]
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM prestashop/base:8.3-fpm
2+
LABEL maintainer="PrestaShop Core Team <[email protected]>"
3+
4+
RUN apt update
5+
RUN apt -y install git
6+
7+
RUN git clone -b 9.0.x https://github.com/PrestaShop/PrestaShop.git /tmp/data-ps
8+
9+
CMD ["/tmp/docker_run.sh"]

β€Žimages/nightly/7.2-apache/Dockerfileβ€Ž

Lines changed: 0 additions & 20 deletions
This file was deleted.

β€Žimages/nightly/7.2-fpm/Dockerfileβ€Ž

Lines changed: 0 additions & 20 deletions
This file was deleted.

β€Žimages/nightly/7.3-apache/Dockerfileβ€Ž

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
Β (0)