Skip to content

Commit

Permalink
Merge pull request #408 from jolelievre/add-branches-docker
Browse files Browse the repository at this point in the history
Add dockers for branches 1.7.8.x, 8.0.x, 8.1.x and 8.2.x
  • Loading branch information
jolelievre authored Nov 28, 2024
2 parents a1bc579 + 70de74b commit 3fc902c
Show file tree
Hide file tree
Showing 39 changed files with 407 additions and 0 deletions.
10 changes: 10 additions & 0 deletions images/1.7.8.x/7.1-apache/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM prestashop/base:7.1-apache
LABEL maintainer="PrestaShop Core Team <[email protected]>"

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=1.7.8.x
ENV NODE_VERSION=v14.20.0

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=1.7.8.x
ENV NODE_VERSION=v14.20.0

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=1.7.8.x
ENV NODE_VERSION=v14.20.0

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=1.7.8.x
ENV NODE_VERSION=v14.20.0

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=1.7.8.x
ENV NODE_VERSION=v14.20.0

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=1.7.8.x
ENV NODE_VERSION=v14.20.0

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=1.7.8.x
ENV NODE_VERSION=v14.20.0

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=1.7.8.x
ENV NODE_VERSION=v14.20.0

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.0.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.0.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.0.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.0.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.0.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.0.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.0.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.0.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.0.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.0.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.1.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.1.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.1.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.1.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.1.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.1.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.1.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.1.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.1.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.1.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.2.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.2.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.2.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.2.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.2.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.2.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.2.x
ENV NODE_VERSION=v16.20.2

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

RUN apt update
RUN apt -y install git

ENV PS_BRANCH=8.2.x
ENV NODE_VERSION=v16.20.2

CMD ["/tmp/docker_branch_run.sh"]
Loading

0 comments on commit 3fc902c

Please sign in to comment.