MH0386 commited on
Commit
2865941
·
verified ·
1 Parent(s): 9add7fd

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -5
Dockerfile CHANGED
@@ -8,12 +8,11 @@ ENV UV_COMPILE_BYTECODE=1 \
8
  GRADIO_SERVER_PORT=8080 \
9
  GRADIO_SERVER_NAME=0.0.0.0
10
 
11
- RUN groupadd vocalizr && \
12
- useradd --gid vocalizr --shell /bin/bash --create-home vocalizr
13
-
14
  # skipcq: DOK-DL3008
15
- RUN apt-get update -qq && \
16
- apt-get install -qq -y --no-install-recommends espeak-ng && \
 
 
17
  apt-get clean -qq && \
18
  rm -rf /var/lib/apt/lists/*
19
 
 
8
  GRADIO_SERVER_PORT=8080 \
9
  GRADIO_SERVER_NAME=0.0.0.0
10
 
 
 
 
11
  # skipcq: DOK-DL3008
12
+ RUN groupadd vocalizr && \
13
+ useradd --gid vocalizr --shell /bin/bash --create-home vocalizr && \
14
+ apt-get update -qq && \
15
+ apt-get install -qq -y --no-install-recommends espeak-ng ffmpeg && \
16
  apt-get clean -qq && \
17
  rm -rf /var/lib/apt/lists/*
18