From 6e43b239799f201eddeb0780518f55a03db37f43 Mon Sep 17 00:00:00 2001 From: Kassiie127 <154215439+Kassiie127@users.noreply.github.com> Date: Mon, 18 Dec 2023 11:05:58 +0000 Subject: [PATCH 1/4] Task done Task done --- ch02/exercises/hello-diamol-web/html/index.html | 11 ++++++++--- ch02/lab/index.html | 5 +++-- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/ch02/exercises/hello-diamol-web/html/index.html b/ch02/exercises/hello-diamol-web/html/index.html index d263f1c..d604249 100644 --- a/ch02/exercises/hello-diamol-web/html/index.html +++ b/ch02/exercises/hello-diamol-web/html/index.html @@ -1,10 +1,15 @@ + - +

- Hello from Chapter 2! + Hello Josue!

- This is Learn Docker in a Month of Lunches. + This is A proof of my Lab haha + .

+

+ And a sample solution for the first lab. +

\ No newline at end of file diff --git a/ch02/lab/index.html b/ch02/lab/index.html index 1736b27..d604249 100644 --- a/ch02/lab/index.html +++ b/ch02/lab/index.html @@ -2,10 +2,11 @@

- Hello from Chapter 2! + Hello Josue!

- This is Learn Docker in a Month of Lunches. + This is A proof of my Lab haha + .

And a sample solution for the first lab. From 1d41fcb67e8bff07a422cfdbda17aa5261fa000b Mon Sep 17 00:00:00 2001 From: Kassiie127 <154215439+Kassiie127@users.noreply.github.com> Date: Mon, 18 Dec 2023 11:27:00 +0000 Subject: [PATCH 2/4] Update index.html --- ch02/exercises/hello-diamol-web/html/index.html | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/ch02/exercises/hello-diamol-web/html/index.html b/ch02/exercises/hello-diamol-web/html/index.html index d263f1c..f921ce3 100644 --- a/ch02/exercises/hello-diamol-web/html/index.html +++ b/ch02/exercises/hello-diamol-web/html/index.html @@ -1,10 +1,15 @@ + - +

- Hello from Chapter 2! + Hello Josue!

- This is Learn Docker in a Month of Lunches. + This is A proof of my Lab haha + .

+

+ And a sample solution for the first lab. +

- \ No newline at end of file + From 4afc2824c85b3d22b9f209e60529216dd09ab64c Mon Sep 17 00:00:00 2001 From: Kassiie127 <154215439+Kassiie127@users.noreply.github.com> Date: Mon, 18 Dec 2023 12:20:42 +0000 Subject: [PATCH 3/4] Update index.html --- ch02/exercises/hello-diamol-web/html/index.html | 3 --- 1 file changed, 3 deletions(-) diff --git a/ch02/exercises/hello-diamol-web/html/index.html b/ch02/exercises/hello-diamol-web/html/index.html index f921ce3..487ecac 100644 --- a/ch02/exercises/hello-diamol-web/html/index.html +++ b/ch02/exercises/hello-diamol-web/html/index.html @@ -8,8 +8,5 @@

This is A proof of my Lab haha .

-

- And a sample solution for the first lab. -

From 2d3cd0669f8e62a0b82596d6916c14fece24441e Mon Sep 17 00:00:00 2001 From: Kassiie127 <154215439+Kassiie127@users.noreply.github.com> Date: Mon, 18 Dec 2023 12:24:55 +0000 Subject: [PATCH 4/4] Create docker-image.yml --- .github/workflows/docker-image.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/docker-image.yml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 0000000..eac633f --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,18 @@ +name: Docker Image CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build the Docker image + run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)