We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c84db5 commit 520bb71Copy full SHA for 520bb71
1 file changed
TaskEngine.Dockerfile
@@ -34,8 +34,11 @@ apt-get install -y netcat-traditional && apt-get -q update
34
# Microsoft 8.0 issue: https://github.com/Azure-Samples/cognitive-services-speech-sdk/issues/2204
35
# This will install OpenSSL 1.1.1 because it is needed by the Speech SDK.
36
# RUN ARCH=$(dpkg --print-architecture)
37
-COPY ./install-speech-hack-libssl1.sh /
38
-RUN /install-speech-hack-libssl1.sh
+# COPY ./install-speech-hack-libssl1.sh /
+# RUN wget /install-speech-hack-libssl1.sh
39
+
40
+RUN wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb
41
+RUN dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb
42
43
44
FROM publish_base as publish
0 commit comments