re-order dockerfile to preserve cache
This commit is contained in:
parent
140eeada83
commit
c37a55ba05
1 changed files with 3 additions and 2 deletions
|
@ -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"); \
|
||||
|
|
Loading…
Add table
Reference in a new issue