Skip to content

Commit 63816b8

Browse files
authored
Updated Dockerfile
wget complains about the certificate of the site hosting tedlium models: ERROR: cannot verify phon.ioc.ee's certificate, issued by ‘CN=TERENA SSL CA 3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL’: Unable to locally verify the issuer's authority. added '--no-check-certificate' flag to wget to ignore the cert check
1 parent 474c286 commit 63816b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/practical-example/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ MAINTAINER Eduardo Silva <[email protected]>
44
# This is the practical example part
55

66
RUN mkdir -p /opt/models && cd /opt/models && \
7-
wget https://phon.ioc.ee/~tanela/tedlium_nnet_ms_sp_online.tgz && \
7+
wget --no-check-certificate https://phon.ioc.ee/~tanela/tedlium_nnet_ms_sp_online.tgz && \
88
tar -zxvf tedlium_nnet_ms_sp_online.tgz && \
99
wget https://raw.githubusercontent.com/alumae/kaldi-gstreamer-server/master/sample_english_nnet2.yaml -P /opt/models && \
1010
find /opt/models/ -type f | xargs sed -i 's:test:/opt:g' && \

0 commit comments

Comments
 (0)