diff options
| author | Adam Malczewski <[email protected]> | 2026-05-11 19:18:34 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-05-11 19:18:34 +0900 |
| commit | c23ee09f6d24832aa472298db91df3ce6e248a76 (patch) | |
| tree | 3576678394cf5eb053dc649abdf1dab559d69487 /docker/entrypoint.dev.sh | |
| download | youtube-transcriber-c23ee09f6d24832aa472298db91df3ce6e248a76.tar.gz youtube-transcriber-c23ee09f6d24832aa472298db91df3ce6e248a76.zip | |
Initial commit: YouTube transcriber API with queue-based worker
Diffstat (limited to 'docker/entrypoint.dev.sh')
| -rwxr-xr-x | docker/entrypoint.dev.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docker/entrypoint.dev.sh b/docker/entrypoint.dev.sh new file mode 100755 index 0000000..83bde02 --- /dev/null +++ b/docker/entrypoint.dev.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash +set -euo pipefail + +pip install --no-cache-dir --break-system-packages $(python -c "import tomllib; print(' '.join(tomllib.load(open('/app/pyproject.toml','rb'))['project']['dependencies']))") > /dev/null + +exec "$@" |
