re-order dockerfile to preserve cache

This commit is contained in:
Matthew Ryan Dillon 2025-03-25 10:15:42 -04:00
parent 140eeada83
commit c37a55ba05

View file

@ -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"); \