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/ ############################