From c37a55ba055c05e8f41a11055e07f0e157117bc2 Mon Sep 17 00:00:00 2001 From: Matthew Ryan Dillon Date: Tue, 25 Mar 2025 10:15:42 -0400 Subject: [PATCH] re-order dockerfile to preserve cache --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 74b449e..dfca61e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,12 +8,13 @@ RUN apt-get update && apt-get install -y \ RUN mkdir -p /app/markdown -COPY *.md /app/markdown -COPY *.md /usr/share/nginx/html COPY template.html /app/markdown COPY default.conf /etc/nginx/conf.d +COPY *.md /app/markdown +COPY *.md /usr/share/nginx/html + RUN for md_file in /app/markdown/*.md; do \ if [ -f "$md_file" ]; then \ filename=$(basename -- "$md_file"); \