Tomtom84 commited on
Commit
35b038c
·
verified ·
1 Parent(s): 719a208

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -17,7 +17,7 @@ ENV PATH="/home/user/.local/bin:$PATH"
17
  COPY --chown=user . /app
18
 
19
  ENV HF_HOME=/app/.cache
20
-
21
  # GPU-freundliches Torch-Upgrade (falls gewünscht)
22
  #RUN pip install --no-cache-dir \
23
  # torch==2.3.1+cu121 torchaudio==2.3.1+cu121 \
@@ -33,11 +33,11 @@ RUN pip install --upgrade pip && \
33
  RUN pip install --no-cache-dir "realtimetts[system]>=0.5.5"
34
 
35
  # nur *diese* Engine-Pflicht nachliefern, aber ohne Resolver:
36
- RUN pip install --no-cache-dir pyttsx3==2.90 --no-deps
37
 
38
  # optional, um Warn-Spam zu reduzieren
39
- RUN pip install --no-cache-dir azure-cognitiveservices-speech==1.33.0 --no-deps \
40
- tqdm==4.66.1 --no-deps
41
 
42
  EXPOSE 7860
43
 
 
17
  COPY --chown=user . /app
18
 
19
  ENV HF_HOME=/app/.cache
20
+ ENV VLLM_USE_LM_FORMAT_ENFORCER=0
21
  # GPU-freundliches Torch-Upgrade (falls gewünscht)
22
  #RUN pip install --no-cache-dir \
23
  # torch==2.3.1+cu121 torchaudio==2.3.1+cu121 \
 
33
  RUN pip install --no-cache-dir "realtimetts[system]>=0.5.5"
34
 
35
  # nur *diese* Engine-Pflicht nachliefern, aber ohne Resolver:
36
+ # RUN pip install --no-cache-dir pyttsx3==2.90 --no-deps
37
 
38
  # optional, um Warn-Spam zu reduzieren
39
+ # RUN pip install --no-cache-dir azure-cognitiveservices-speech==1.33.0 --no-deps \
40
+ # tqdm==4.66.1 --no-deps
41
 
42
  EXPOSE 7860
43