mirror of
https://github.com/luzifer-docker/mdwiki.git
synced 2024-11-12 19:02:41 +00:00
10 lines
159 B
Bash
10 lines
159 B
Bash
|
#!/bin/bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
if [ "${1:-}" = 'serve' ]; then
|
||
|
cp /usr/src/mdwiki/mdwiki.html /md-app/index.html
|
||
|
exec python -m http.server 80
|
||
|
fi
|
||
|
|
||
|
exec "$@"
|