From dfe7d034455130192921070ef07e88d48f75bca6 Mon Sep 17 00:00:00 2001 From: jbergner Date: Sun, 4 May 2025 18:01:07 +0200 Subject: [PATCH] Fix Dockerfile src --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index d352cb7..2d11423 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,10 +27,10 @@ RUN git clone --depth 1 --branch ${CONTENT_REF} ${CONTENT_REPO} /src # • statische Seiten: /pages/* → /out/pages # (Pfad‑Anpassung hier nach DEINEM Repository‑Layout) -RUN mkdir -p /out/content /out/static -RUN find /articles -name '*.md' -exec cp {} /out/content/ \; -RUN cp -r /static/* /out/static/ -RUN cp -r /pages/* /out/pages/ +RUN mkdir -p /out/content /out/static /out/pages +RUN find /src/articles -name '*.md' -exec cp {} /out/content/ \; +RUN cp -r /src/static/* /out/static/ +RUN cp -r /src/pages/* /out/pages/ ############################