From 9bb1a859444cfdb78ac2ca6e4bca1261b0d209c2 Mon Sep 17 00:00:00 2001 From: ahmedgamalyousef Date: Thu, 9 Oct 2025 22:13:28 +0300 Subject: [PATCH] Adding Dockerfile & .ghaymah.json file --- .ghaymah.json | 20 ++++++++++++++++++++ Dockerfile | 5 +++++ 2 files changed, 25 insertions(+) create mode 100644 .ghaymah.json create mode 100644 Dockerfile diff --git a/.ghaymah.json b/.ghaymah.json new file mode 100644 index 0000000..54c491f --- /dev/null +++ b/.ghaymah.json @@ -0,0 +1,20 @@ +{ + "id": "eb1b607d-2f98-465c-a288-5523387c69ea", + "name": "ghaymahci-cicd", + "projectId": "49288893-8ec8-424e-a79a-a1e4166f3e6f", + "ports": [ + { + "expose": true, + "number": 80 + } + ], + "publicAccess": { + "enabled": true, + "domain": "auto" + }, + "resourceTier": "t1", + "container": { + "image": "firstcicd:latest", + "pullSecretName": "" + } +} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..74a7a75 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM nginx:latest + +COPY index.html /usr/share/nginx/html + +EXPOSE 80