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