master
Kar 2025-06-15 22:43:58 +05:30
parent 6612d7ebd4
commit 0f5c41259b
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ RUN pip3 install flask flask-cors
COPY app.py . COPY app.py .
# Expose port # Expose port
EXPOSE 5000 EXPOSE 4002
# Run the server # Run the server
CMD ["python3", "app.py"] CMD ["python3", "app.py"]

2
app.py
View File

@ -58,4 +58,4 @@ def transcribe_audio():
os.unlink(output_file) os.unlink(output_file)
if __name__ == '__main__': if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000) app.run(host='0.0.0.0', port=4002)