Fix Dockerfile src
Some checks failed
release-tag / release-image (push) Failing after 1m18s

This commit is contained in:
2025-05-04 18:01:07 +02:00
parent b0eea7ae62
commit dfe7d03445

View File

@@ -27,10 +27,10 @@ RUN git clone --depth 1 --branch ${CONTENT_REF} ${CONTENT_REPO} /src
# • statische Seiten: /pages/* → /out/pages # • statische Seiten: /pages/* → /out/pages
# (PfadAnpassung hier nach DEINEM RepositoryLayout) # (PfadAnpassung hier nach DEINEM RepositoryLayout)
RUN mkdir -p /out/content /out/static RUN mkdir -p /out/content /out/static /out/pages
RUN find /articles -name '*.md' -exec cp {} /out/content/ \; RUN find /src/articles -name '*.md' -exec cp {} /out/content/ \;
RUN cp -r /static/* /out/static/ RUN cp -r /src/static/* /out/static/
RUN cp -r /pages/* /out/pages/ RUN cp -r /src/pages/* /out/pages/
############################ ############################