notescriber/dockerfile

15 lines
350 B
Plaintext
Raw Normal View History

FROM python:3.9.18-bookworm
2024-02-14 20:20:20 +00:00
RUN mkdir /app
COPY notescriber /app/notescriber
COPY notescriber.py /app/notescriber.py
COPY requirements.txt /app/requirements.txt
COPY .config.yaml /app/.config.yaml
COPY load_model.py /app/load_model.py
2024-02-14 20:20:20 +00:00
WORKDIR /app
RUN pip install -r requirements.txt
RUN /app/load_model.py
RUN apt update && apt install -y ffmpeg