speech-to-text / Dockerfile
MSchell0129
13
85a33f2
raw
history blame
189 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["python", 'speech_to_text.py']