summaryrefslogtreecommitdiffhomepage
path: root/docker/entrypoint.dev.sh
diff options
context:
space:
mode:
authorAdam Malczewski <[email protected]>2026-05-11 19:18:34 +0900
committerAdam Malczewski <[email protected]>2026-05-11 19:18:34 +0900
commitc23ee09f6d24832aa472298db91df3ce6e248a76 (patch)
tree3576678394cf5eb053dc649abdf1dab559d69487 /docker/entrypoint.dev.sh
downloadyoutube-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-xdocker/entrypoint.dev.sh6
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 "$@"