From e8da7a4cff546c6b9ddf8a3202cb4e3ac241ba6c Mon Sep 17 00:00:00 2001 From: Ali Barour Date: Thu, 13 Feb 2025 00:54:12 +0400 Subject: [PATCH 1/6] 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 Date: Thu, 13 Feb 2025 13:47:38 +0400 Subject: [PATCH 2/6] 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 Date: Thu, 13 Feb 2025 14:43:10 +0400 Subject: [PATCH 3/6] 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 Date: Thu, 13 Feb 2025 14:47:06 +0400 Subject: [PATCH 4/6] 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 Date: Thu, 13 Feb 2025 14:52:57 +0400 Subject: [PATCH 5/6] 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 Date: Thu, 13 Feb 2025 15:16:04 +0400 Subject: [PATCH 6/6] 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