Small docs cleanup (#22725)

* add images

* Add root README.md to docker container
pull/22727/head
Willem Melching 2021-10-28 19:16:39 +02:00 committed by GitHub
parent d4433cc2d8
commit 48ef2bcbf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,7 @@ clean:
@echo "Copying docs & config to build folder..."
cp -a "$(DOCSDIR)" "$(BUILDDIR)"
cd "$(OPENPILOT_ROOT)" && \
find . -type f \( -name "*.md" -o -name "*.rst" \) \
find . -type f \( -name "*.md" -o -name "*.rst" -o -name "*.png" -o -name "*.jpg" \) \
-not -path "*/.*" \
-not -path "./build/*" \
-not -path "./docs/*" \

View File

@ -30,6 +30,7 @@ COPY ./opendbc ${OPENPILOT_PATH}/opendbc
COPY ./cereal ${OPENPILOT_PATH}/cereal
COPY ./panda ${OPENPILOT_PATH}/panda
COPY ./selfdrive ${OPENPILOT_PATH}/selfdrive
COPY ./*.md ${OPENPILOT_PATH}/
RUN scons -j$(nproc)