CoolFace
Apppublic

sankeerthAjith/VoiceToTextAPI_uses_whisper_base

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
1FROM python:3.102 3# Set the working directory4WORKDIR /app5 6# Install dependencies7RUN pip install flask torch torchvision torchaudio openai-whisper8 9# Copy app code10COPY app.py .11 12# Expose the port Flask will run on13EXPOSE 786014 15# Run the app16CMD ["python", "app.py"]17