Fedir Zadniprovskyi 01-10
chore: misc changes
@a3f23eca8b697c3c5a6767f969e6d007b755acd3
Dockerfile
--- Dockerfile
+++ Dockerfile
@@ -19,6 +19,7 @@
 COPY --chown=ubuntu --from=ghcr.io/astral-sh/uv:0.5.14 /uv /bin/uv
 # https://docs.astral.sh/uv/guides/integration/docker/#intermediate-layers
 # https://docs.astral.sh/uv/guides/integration/docker/#compiling-bytecode
+# TODO: figure out if `/home/ubuntu/.cache/uv` should be used instead of `/root/.cache/uv`
 RUN --mount=type=cache,target=/root/.cache/uv \
     --mount=type=bind,source=uv.lock,target=uv.lock \
     --mount=type=bind,source=pyproject.toml,target=pyproject.toml \
compose.yaml
--- compose.yaml
+++ compose.yaml
@@ -11,7 +11,3 @@
     restart: unless-stopped
     ports:
       - 8000:8000
-    develop:
-      watch:
-        - path: faster_whisper_server
-          action: rebuild
docs/installation.md
--- docs/installation.md
+++ docs/installation.md
@@ -70,26 +70,47 @@
 === "CUDA"
 
     ```bash
-    docker run --rm --detach --publish 8000:8000 --name faster-whisper-server --volume hf-hub-cache:/home/ubuntu/.cache/huggingface/hub --gpus=all fedirz/faster-whisper-server:latest-cuda
+    docker run \
+      --rm \
+      --detach \
+      --publish 8000:8000 \
+      --name faster-whisper-server \
+      --volume hf-hub-cache:/home/ubuntu/.cache/huggingface/hub \
+      --gpus=all \
+      fedirz/faster-whisper-server:latest-cuda
     ```
 
 === "CUDA (with CDI feature enabled)"
 
     ```bash
-    docker run --rm --detach --publish 8000:8000 --name faster-whisper-server --volume hf-hub-cache:/home/ubuntu/.cache/huggingface/hub --device=nvidia.com/gpu=all fedirz/faster-whisper-server:latest-cuda
+    docker run \
+      --rm \
+      --detach \
+      --publish 8000:8000 \
+      --name faster-whisper-server \
+      --volume hf-hub-cache:/home/ubuntu/.cache/huggingface/hub \
+      --device=nvidia.com/gpu=all \
+      fedirz/faster-whisper-server:latest-cuda
     ```
 
 === "CPU"
 
     ```bash
-    docker run --rm --detach --publish 8000:8000 --name faster-whisper-server --volume hf-hub-cache:/home/ubuntu/.cache/huggingface/hub fedirz/faster-whisper-server:latest-cpu
+    docker run \
+      --rm \
+      --detach \
+      --publish 8000:8000 \
+      --name faster-whisper-server \
+      --volume hf-hub-cache:/home/ubuntu/.cache/huggingface/hub \
+      fedirz/faster-whisper-server:latest-cpu
     ```
 
 ## Kubernetes
+
 WARNING: it was written few months ago and may be outdated.
 Please refer to this [blog post](https://substratus.ai/blog/deploying-faster-whisper-on-k8s)
 
-## Python (requires Python 3.12+)
+## Python (requires Python 3.12+ and `uv` package manager)
 
 ```bash
 git clone https://github.com/fedirz/faster-whisper-server.git
Add a comment
List