Spaces:
Sleeping
Sleeping
Yurii Paniv
commited on
Commit
•
593d0e2
1
Parent(s):
a1d4372
Update Dockerfile for Heroku
Browse files- Dockerfile +3 -1
- templates/hello.html +1 -2
Dockerfile
CHANGED
@@ -3,5 +3,7 @@
|
|
3 |
FROM python:3.7
|
4 |
COPY . /app
|
5 |
WORKDIR /app
|
|
|
|
|
6 |
RUN pip install -r requirements.txt
|
7 |
-
CMD
|
|
|
3 |
FROM python:3.7
|
4 |
COPY . /app
|
5 |
WORKDIR /app
|
6 |
+
RUN wget https://github.com/robinhad/voice-recognition-ua/releases/download/v0.1/uk.tflite
|
7 |
+
RUN wget https://github.com/mozilla/DeepSpeech/releases/download/v0.7.3/deepspeech-0.7.3-models.tflite
|
8 |
RUN pip install -r requirements.txt
|
9 |
+
CMD uwsgi app.ini --http 0.0.0.0:$PORT
|
templates/hello.html
CHANGED
@@ -14,8 +14,6 @@
|
|
14 |
<div class="col-12 col-md-8 col-sm-12 col-xl-6 mx-auto text-center">
|
15 |
<h1>Демо розпізнавання української мови</h1>
|
16 |
<p>Говоріть 3 секунди після натискання на кнопку, тоді отримаєте результат</p>
|
17 |
-
|
18 |
-
<div id="result"></div>
|
19 |
<div class="row no-gutters">
|
20 |
<div class="col-1 col-sm-2"> </div>
|
21 |
<div class="col-6">
|
@@ -28,6 +26,7 @@
|
|
28 |
</select>
|
29 |
</div>
|
30 |
</div>
|
|
|
31 |
</div>
|
32 |
</div>
|
33 |
<script src="https://cdn.rawgit.com/mattdiamond/Recorderjs/08e7abd9/dist/recorder.js"></script>
|
|
|
14 |
<div class="col-12 col-md-8 col-sm-12 col-xl-6 mx-auto text-center">
|
15 |
<h1>Демо розпізнавання української мови</h1>
|
16 |
<p>Говоріть 3 секунди після натискання на кнопку, тоді отримаєте результат</p>
|
|
|
|
|
17 |
<div class="row no-gutters">
|
18 |
<div class="col-1 col-sm-2"> </div>
|
19 |
<div class="col-6">
|
|
|
26 |
</select>
|
27 |
</div>
|
28 |
</div>
|
29 |
+
<div id="result"></div>
|
30 |
</div>
|
31 |
</div>
|
32 |
<script src="https://cdn.rawgit.com/mattdiamond/Recorderjs/08e7abd9/dist/recorder.js"></script>
|