From 1b48cea50a851fb6057a4f8dac730c2bd63f4b49 Mon Sep 17 00:00:00 2001 From: zouyq Date: Thu, 10 Aug 2023 17:39:25 +0800 Subject: [PATCH] dockerfile fallback debian11,fix azure cognitiveservices speech error Python 3.10-slim based Debian 12, using Azure TextToVoice may result in an error. the Speech SDK does not currently support OpenSSL 3.0, which is the default version in Ubuntu 22.04 and Debian 12 --- docker/Dockerfile.latest | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile.latest b/docker/Dockerfile.latest index 59e9b60ec..515ad3f01 100644 --- a/docker/Dockerfile.latest +++ b/docker/Dockerfile.latest @@ -1,4 +1,4 @@ -FROM python:3.10-slim +FROM python:3.10-slim-bullseye LABEL maintainer="foo@bar.com" ARG TZ='Asia/Shanghai' @@ -32,4 +32,4 @@ RUN chmod +x /entrypoint.sh \ USER noroot -ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file +ENTRYPOINT ["/entrypoint.sh"]