mirror of https://github.com/docker/docs.git
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 <github@gone.nl>
This commit is contained in:
parent
5d111f85dc
commit
c7b9a54df9
|
@ -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 .
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue