8 lines
179 B
Bash
8 lines
179 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 /wrapper/wrapper.py
|