2024-02-14 20:20:20 +00:00
|
|
|
FROM python
|
|
|
|
|
|
|
|
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
|
2024-02-14 21:33:37 +00:00
|
|
|
COPY load_model.py /app/load_model.py
|
2024-02-14 20:20:20 +00:00
|
|
|
WORKDIR /app
|
|
|
|
|
2024-02-14 21:33:37 +00:00
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
RUN /app/load_model.py
|