8 lines
175 B
Bash
8 lines
175 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Ensure the external volumes are mounted and writable
|
|
mkdir -p /cache/app /cache/tmp /cache/prev /data
|
|
|
|
exec python -u /app/wrapper.py
|