Skip to content

Commit

Permalink
dockerfile fallback debian11,fix azure cognitiveservices speech error
Browse files Browse the repository at this point in the history
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
  • Loading branch information
zouyq authored Aug 10, 2023
1 parent 88bf345 commit 1b48cea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile.latest
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim
FROM python:3.10-slim-bullseye

LABEL maintainer="[email protected]"
ARG TZ='Asia/Shanghai'
Expand Down Expand Up @@ -32,4 +32,4 @@ RUN chmod +x /entrypoint.sh \

USER noroot

ENTRYPOINT ["/entrypoint.sh"]
ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 1b48cea

Please sign in to comment.