mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
17 lines
535 B
Bash
17 lines
535 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# `--user` is required for build output file ownership to match the CI user,
|
||
|
# instead of the internal root user of the container.
|
||
|
docker run \
|
||
|
--rm \
|
||
|
--user "$(id -u):$(id -g)" \
|
||
|
-v "${PWD}:/docs" \
|
||
|
squidfunk/mkdocs-material:7.1.4 build --strict
|
||
|
|
||
|
# Remove unnecessary build artifacts: https://github.com/squidfunk/mkdocs-material/issues/2519
|
||
|
cd site || exit
|
||
|
find . -type f -name '*.min.js.map' -delete -o -name '*.min.css.map' -delete
|
||
|
rm sitemap.xml.gz
|
||
|
rm assets/images/favicon.png
|
||
|
rm -r assets/javascripts/lunr
|