8 lines
152 B
Bash
8 lines
152 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Ensure default dirs exist
|
|
mkdir -p /cache/app /cache/tmp /cache/prev /data
|
|
|
|
exec python -u /wrapper/wrapper.py
|