Skip to content

Commit

Permalink
Generate nightly images for PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jolelievre committed Feb 19, 2024
1 parent ffa6a3f commit 7dff073
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
20 changes: 20 additions & 0 deletions images/nightly/8.3-apache/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
FROM prestashop/base:8.3-apache
LABEL maintainer="PrestaShop Core Team <[email protected]>"

ENV PS_VERSION nightly

ENV PATH /root/google-cloud-sdk/bin/:$PATH

RUN apt update
RUN apt -y install \
python3 \
curl \
bash

RUN curl -sSL https://sdk.cloud.google.com | bash
RUN gcloud config set core/disable_usage_reporting true && \
gcloud config set component_manager/disable_update_check true && \
gcloud config set metrics/environment github_docker_image && \
gcloud --version

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

ENV PS_VERSION nightly

ENV PATH /root/google-cloud-sdk/bin/:$PATH

RUN apt update
RUN apt -y install \
python3 \
curl \
bash

RUN curl -sSL https://sdk.cloud.google.com | bash
RUN gcloud config set core/disable_usage_reporting true && \
gcloud config set component_manager/disable_update_check true && \
gcloud config set metrics/environment github_docker_image && \
gcloud --version

CMD ["/tmp/docker_nightly_run.sh"]

0 comments on commit 7dff073

Please sign in to comment.