File size: 913 Bytes
2cba4ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
FROM python:3.9
RUN apt-get update && \
apt-get install -y --no-install-recommends \
ffmpeg
RUN python3 -m pip install --upgrade pip
# Python installation
WORKDIR /usr/src/app
# Force CPU versions of torch
RUN pip3 install \
torch==1.13.1+cpu \
torchaudio==0.13.1+cpu \
-f https://download.pytorch.org/whl/torch_stable.html
# Note: First installing the python requirements permits to save time when re-building after a source change.
COPY requirements.txt /usr/src/app/requirements.txt
RUN cd /usr/src/app/ && pip3 install -r requirements.txt
# Copy source
COPY setup.py /usr/src/app/setup.py
COPY whisper_timestamped /usr/src/app/whisper_timestamped
# Install
RUN cd /usr/src/app/ && pip3 install ".[dev]"
# Cleanup
RUN rm -R /usr/src/app/requirements.txt /usr/src/app/setup.py /usr/src/app/whisper_timestamped
# Copy tests
COPY tests /usr/src/app/tests
ENTRYPOINT ["/bin/bash"] |