updated nixpacks
This commit is contained in:
parent
f20ce9ac47
commit
5e4e21009b
4 changed files with 8 additions and 13 deletions
|
@ -1,9 +0,0 @@
|
|||
FROM ghcr.io/getzola/zola:v0.19.2 AS zola
|
||||
|
||||
COPY . /project
|
||||
WORKDIR /project
|
||||
RUN ["zola", "build"]
|
||||
|
||||
FROM ghcr.io/static-web-server/static-web-server:2
|
||||
WORKDIR /
|
||||
COPY --from=zola /project/public /public
|
|
@ -12,6 +12,10 @@ build_search_index = true
|
|||
|
||||
author = "Erik"
|
||||
|
||||
generate_feeds = true
|
||||
|
||||
taxonomies = [{ name = "tags", feed = true }]
|
||||
|
||||
# smart_punctuation = true
|
||||
# bottom_footnotes = true
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
+++
|
||||
title = "test"
|
||||
draft = true
|
||||
draft = false
|
||||
insert_anchor_links = "left"
|
||||
tags = [ "typst" ]
|
||||
render = true
|
||||
|
||||
[extra]
|
||||
# [extra]
|
||||
# poor = true
|
||||
+++
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
providers = ["..."]
|
||||
providers = ["...", "staticfile"]
|
||||
|
||||
[phases.setup]
|
||||
nixPkgs = ["zola"]
|
||||
|
||||
[phases.build]
|
||||
cmds = ["echo building!", "zola build"]
|
||||
cmds = ["zola build"]
|
||||
|
|
Loading…
Reference in a new issue