From e8da7a4cff546c6b9ddf8a3202cb4e3ac241ba6c Mon Sep 17 00:00:00 2001
From: Ali Barour <ali.barour@maqta.com>
Date: Thu, 13 Feb 2025 00:54:12 +0400
Subject: [PATCH 1/7] dockerfile created

---
 Dockerfile | 7 +++++++
 1 file changed, 7 insertions(+)
 create mode 100644 Dockerfile

diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..6baf3f3
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,7 @@
+FROM node:18-alpine
+WORKDIR /app
+COPY . .
+RUN yarn install --production && yarn cache clean
+ENTRYPOINT ["node"]
+CMD ["src/index.js"]
+EXPOSE 3000

From faccb53521ba94588bfa9882f72e8dcb504d6717 Mon Sep 17 00:00:00 2001
From: ali nabil <ali.nabil.986@gmail.com>
Date: Thu, 13 Feb 2025 13:47:38 +0400
Subject: [PATCH 2/7] Add work flows file

---
 .github/workflows/docker-image.ymal | 35 +++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 .github/workflows/docker-image.ymal

diff --git a/.github/workflows/docker-image.ymal b/.github/workflows/docker-image.ymal
new file mode 100644
index 0000000..331837e
--- /dev/null
+++ b/.github/workflows/docker-image.ymal
@@ -0,0 +1,35 @@
+# .github/workflows/docker-image.yml
+name: Docker Image CI
+on:
+  push:
+    branches:
+      - main
+  pull_request:
+    branches:
+      - main
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    
+    steps:
+    - name: Checkout code
+      uses: actions/checkout@v3
+
+    - name: Set up Docker Buildx
+      uses: docker/setup-buildx-action@v3
+
+    - name: Log in to GitHub Container Registry
+      uses: docker/login-action@v3
+      with:
+        registry: ghcr.io
+        username: ${{ github.repository_owner }}
+        password: ${{ secrets.GITHUB_TOKEN }}
+
+    - name: Build and push Docker image
+      uses: docker/build-push-action@v5
+      with:
+        context: .
+        push: true
+        tags: |
+          ghcr.io/${{ github.repository_owner }}/abohmeed/getting-started:latest
+          ghcr.io/${{ github.repository_owner }}/abohmeed/getting-started:${{ github.sha }}
\ No newline at end of file

From 26b4d16e21518f8e10a99949b094c4eb9dbce99a Mon Sep 17 00:00:00 2001
From: ali nabil <ali.nabil.986@gmail.com>
Date: Thu, 13 Feb 2025 14:43:10 +0400
Subject: [PATCH 3/7] add test file

---
 test.txt | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 test.txt

diff --git a/test.txt b/test.txt
new file mode 100644
index 0000000..30d74d2
--- /dev/null
+++ b/test.txt
@@ -0,0 +1 @@
+test
\ No newline at end of file

From 02c1804df0a2319b166eb31b76d821588c79b0ac Mon Sep 17 00:00:00 2001
From: ali nabil <ali.nabil.986@gmail.com>
Date: Thu, 13 Feb 2025 14:47:06 +0400
Subject: [PATCH 4/7] change file extension to yml

---
 .github/workflows/{docker-image.ymal => docker-image.yml} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename .github/workflows/{docker-image.ymal => docker-image.yml} (100%)

diff --git a/.github/workflows/docker-image.ymal b/.github/workflows/docker-image.yml
similarity index 100%
rename from .github/workflows/docker-image.ymal
rename to .github/workflows/docker-image.yml

From b51625991702003c12eaccbf247514b0e1a5f6f8 Mon Sep 17 00:00:00 2001
From: ali nabil <ali.nabil.986@gmail.com>
Date: Thu, 13 Feb 2025 14:52:57 +0400
Subject: [PATCH 5/7] Rename the image by add tag alinabil

---
 .github/workflows/docker-image.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml
index 331837e..ebb2581 100644
--- a/.github/workflows/docker-image.yml
+++ b/.github/workflows/docker-image.yml
@@ -31,5 +31,5 @@ jobs:
         context: .
         push: true
         tags: |
-          ghcr.io/${{ github.repository_owner }}/abohmeed/getting-started:latest
-          ghcr.io/${{ github.repository_owner }}/abohmeed/getting-started:${{ github.sha }}
\ No newline at end of file
+          ghcr.io/${{ github.repository_owner }}/alinabil/getting-started:latest
+          ghcr.io/${{ github.repository_owner }}/alinabil/getting-started:${{ github.sha }}
\ No newline at end of file

From 5f55269366aff245022b74c83452bc9dbe5e737f Mon Sep 17 00:00:00 2001
From: ali nabil <ali.nabil.986@gmail.com>
Date: Thu, 13 Feb 2025 15:16:04 +0400
Subject: [PATCH 6/7] change test file to  try pipeline

---
 test.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/test.txt b/test.txt
index 30d74d2..d289e98 100644
--- a/test.txt
+++ b/test.txt
@@ -1 +1,2 @@
-test
\ No newline at end of file
+test
+test 123
\ No newline at end of file

From 1fe2b2e3ad12828aba4a60d250ff57dbdb8d8d61 Mon Sep 17 00:00:00 2001
From: ali nabil <ali.nabil.986@gmail.com>
Date: Fri, 14 Feb 2025 00:47:23 +0400
Subject: [PATCH 7/7] Add AWS docker file

---
 Dockerrun.aws.json | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 Dockerrun.aws.json

diff --git a/Dockerrun.aws.json b/Dockerrun.aws.json
new file mode 100644
index 0000000..4ca494a
--- /dev/null
+++ b/Dockerrun.aws.json
@@ -0,0 +1,9 @@
+{
+    "AWSEBDockerrunVersion": "1",
+    "Ports": [
+        {
+            "ContainerPort": "3000"
+        }
+    ],
+    "Logging": "/var/log/node"
+}
\ No newline at end of file