From 81aa8114d2fae5bf409dcd25f41c97ce96c54732 Mon Sep 17 00:00:00 2001 From: Nicholas Orlowsky Date: Tue, 17 Oct 2023 13:23:03 -0400 Subject: [PATCH 1/9] Famous Anthracite! --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1134083..0b589c3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM nginx:stable +FROM ghcr.io/nickorlow/anthracite:main WORKDIR /site COPY . . RUN /bin/bash compile.sh -RUN cp -r ./out/* /usr/share/nginx/html +RUN cp -r ./out/* /www/ From 0078fc90ff3dffc689fe871cf31ee098f56b14ad Mon Sep 17 00:00:00 2001 From: Nicholas Orlowsky Date: Tue, 17 Oct 2023 13:25:44 -0400 Subject: [PATCH 2/9] Update Dockerfile --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0b589c3..ada6b13 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM ghcr.io/nickorlow/anthracite:main +FROM ubuntu as build-env WORKDIR /site - COPY . . - RUN /bin/bash compile.sh -RUN cp -r ./out/* /www/ + +FROM ghcr.io/nickorlow/anthracite:main +COPY --from=build-env ./out/ /www/ From 5f4ec35612a349acb03337ad83e698c603f8a850 Mon Sep 17 00:00:00 2001 From: Nicholas Orlowsky Date: Tue, 17 Oct 2023 13:27:30 -0400 Subject: [PATCH 3/9] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ada6b13..00e389b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,4 +5,4 @@ COPY . . RUN /bin/bash compile.sh FROM ghcr.io/nickorlow/anthracite:main -COPY --from=build-env ./out/ /www/ +COPY --from=build-env /site/out/ /www/ From 69fac45e5fe6c60caa60640d9490a0f946dcc72d Mon Sep 17 00:00:00 2001 From: Nicholas Orlowsky Date: Tue, 17 Oct 2023 13:37:10 -0400 Subject: [PATCH 4/9] bump --- .bump | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .bump diff --git a/.bump b/.bump new file mode 100644 index 0000000..e69de29 From 2b56bace75334a1f9cf1180a9e12cd3ec2aa499d Mon Sep 17 00:00:00 2001 From: Nicholas Orlowsky Date: Tue, 17 Oct 2023 13:37:18 -0400 Subject: [PATCH 5/9] bump --- .bump | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 .bump diff --git a/.bump b/.bump deleted file mode 100644 index e69de29..0000000 From e108eaaee7c74168783e6c4c49a9a2a37e25184f Mon Sep 17 00:00:00 2001 From: Nicholas Orlowsky Date: Tue, 17 Oct 2023 13:38:53 -0400 Subject: [PATCH 6/9] Update structure.template.html --- src/structure.template.html | 1 + 1 file changed, 1 insertion(+) diff --git a/src/structure.template.html b/src/structure.template.html index 0805be0..4e304cc 100644 --- a/src/structure.template.html +++ b/src/structure.template.html @@ -18,5 +18,6 @@

Copyright © Nicholas Orlowsky 2023

Hosting provided by NWS

+

Powered by Anthracite Web Server

From 2abb1769c3b04aece9c2521f3dd35748bc24aff9 Mon Sep 17 00:00:00 2001 From: Nicholas Orlowsky Date: Tue, 17 Oct 2023 13:40:24 -0400 Subject: [PATCH 7/9] Update structure.template.html --- src/structure.template.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structure.template.html b/src/structure.template.html index 4e304cc..bb421d2 100644 --- a/src/structure.template.html +++ b/src/structure.template.html @@ -17,7 +17,7 @@ From 18106cf2294108ad955d380705ae838299d25a60 Mon Sep 17 00:00:00 2001 From: Nicholas Orlowsky Date: Fri, 20 Oct 2023 12:55:05 -0400 Subject: [PATCH 8/9] Use tagged version for Anthracite --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 00e389b..defd423 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,5 +4,5 @@ WORKDIR /site COPY . . RUN /bin/bash compile.sh -FROM ghcr.io/nickorlow/anthracite:main +FROM ghcr.io/nickorlow/anthracite:0.2.0 COPY --from=build-env /site/out/ /www/ From 09831aaa0a1a887b50b8941ae761f7fa4a0bb363 Mon Sep 17 00:00:00 2001 From: Nicholas Orlowsky Date: Fri, 20 Oct 2023 13:40:32 -0400 Subject: [PATCH 9/9] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index defd423..03bca9e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,5 +4,5 @@ WORKDIR /site COPY . . RUN /bin/bash compile.sh -FROM ghcr.io/nickorlow/anthracite:0.2.0 +FROM ghcr.io/nickorlow/anthracite:0.2.1 COPY --from=build-env /site/out/ /www/