-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ffa6a3f
commit 7dff073
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |