Update homepage repo to build using natter.

This commit is contained in:
Tom Alexander 2023-12-23 17:22:37 -05:00
parent a78b4eb7c4
commit 070eaef72d
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
3 changed files with 10 additions and 2 deletions

View File

@ -1,4 +1,10 @@
FROM alpine:3.18
FROM harbor.fizz.buzz/private/natter:latest AS builder
COPY . /source
RUN ls /source/
RUN natter build --config /source/natter.toml
FROM alpine:3.18 AS server
RUN apk add --no-cache bash nginx
RUN addgroup web && adduser -D -G web web && install -d -D -o web -g web -m 700 /srv/http/public
@ -6,6 +12,6 @@ RUN ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/
COPY --chown=web:web docker/server/nginx.conf /srv/http
COPY --chown=web:web docker/server/headers.include /srv/http
COPY --chown=web:web static/ /srv/http/public/
COPY --from=builder --chown=web:web /source/output/ /srv/http/public/
ENTRYPOINT ["/usr/sbin/nginx", "-c", "/srv/http/nginx.conf", "-e", "stderr", "-g", "daemon off;"]

View File

@ -42,6 +42,7 @@ else
endif
.PHONY: run
run: build
run: ## Launch the docker image
> docker run --rm -i -t -p "8080:8080" $(IMAGE_NAME)

1
natter.toml Normal file
View File

@ -0,0 +1 @@
site_title = "FizzBuzz Blog"