sankeerthAjith/VoiceToTextAPI_uses_whisper_base
0
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 