all repos — homestead @ 1ca22b6865a9b413cc4c436ec31700407cdbc842

Code for my website

Fix build

Alan Pearce
commit

1ca22b6865a9b413cc4c436ec31700407cdbc842

parent

7345705a8beb99c3a57815fddc5f28cc45f2bb79

1 file changed, 6 insertions(+), 1 deletion(-)

changed files
M DockerfileDockerfile
@@ -31,7 +31,11 @@ FROM ghcr.io/getzola/zola:v${ZOLA_VERSION} as ssg
WORKDIR /web -COPY --link website ./ +COPY --link config.toml config.toml +COPY --link themes themes +COPY --link templates templates +COPY --link static static +COPY --link content content RUN [ "zola", "build", "--force" ]
@@ -43,6 +47,7 @@ RUN echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
RUN apk add --no-cache prettier@testing make fd brotli gzip zstd +COPY --link Makefile ./ COPY --from=ssg /web ./ RUN make -j4 format compress