Sbboss commited on
Commit
b6a35a3
·
1 Parent(s): 610204e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -5
Dockerfile CHANGED
@@ -19,11 +19,11 @@ RUN pip install --no-cache-dir -r /app/requirements.txt
19
  RUN apt-get update \
20
  && apt-get install -y --no-install-recommends execstack \
21
  && rm -rf /var/lib/apt/lists/* \
22
- && python - <<'PY' \
23
- import silero_vad_lite, subprocess \
24
- so = silero_vad_lite.__file__.replace('__init__.py', 'data/silero_vad_lite.so') \
25
- subprocess.check_call(['execstack','-c',so]) \
26
- print('cleared execstack on', so) \
27
  PY
28
 
29
  # Copy app
 
19
  RUN apt-get update \
20
  && apt-get install -y --no-install-recommends execstack \
21
  && rm -rf /var/lib/apt/lists/* \
22
+ && python - <<'PY'
23
+ import silero_vad_lite, subprocess
24
+ so = silero_vad_lite.__file__.replace('__init__.py', 'data/silero_vad_lite.so')
25
+ subprocess.check_call(['execstack', '-c', so])
26
+ print('cleared execstack on', so)
27
  PY
28
 
29
  # Copy app