Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- Dockerfile +5 -5
Dockerfile
CHANGED
@@ -10,11 +10,11 @@ ENV UV_COMPILE_BYTECODE=1 \
|
|
10 |
RUN groupadd vocalizr && \
|
11 |
useradd --gid vocalizr --shell /bin/bash --create-home vocalizr
|
12 |
|
13 |
-
#
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
|
19 |
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
20 |
|
|
|
10 |
RUN groupadd vocalizr && \
|
11 |
useradd --gid vocalizr --shell /bin/bash --create-home vocalizr
|
12 |
|
13 |
+
# skipcq: DOK-DL3008
|
14 |
+
RUN apt-get update && \
|
15 |
+
apt-get install -qq -y --no-install-recommends espeak-ng && \
|
16 |
+
apt-get clean && \
|
17 |
+
rm -rf /var/lib/apt/lists/*
|
18 |
|
19 |
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
20 |
|