From c7b9a54df97c040ad7990221d8f096b6d577fd88 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 7 Mar 2019 15:15:13 +0100 Subject: [PATCH] Dockerfile: fix missing "boilerplate.txt" in build-stage Although the docs still rendered ok, some pieces were missing when generating the "samples", which resulted in warnings during build: ``` Adding front-matter to ./_samples/library/rethinkdb/README.md ... cat: can't open './_samples/boilerplate.txt': No such file or directory Adding front-matter to ./_samples/library/tomcat/README.md ... cat: can't open './_samples/boilerplate.txt': No such file or directory ``` Signed-off-by: Sebastiaan van Stijn --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 7e446d4a8e..2f42486c19 100644 --- a/Dockerfile +++ b/Dockerfile @@ -70,6 +70,7 @@ FROM builderbase AS upstream-resources COPY ./_scripts/fetch-upstream-resources.sh ./_scripts/ COPY ./_config.yml . COPY ./_data/toc.yaml ./_data/ +COPY ./_samples/boilerplate.txt ./_samples/ RUN bash ./_scripts/fetch-upstream-resources.sh .