notescriber/dockerfile

10 lines
231 B
Plaintext
Raw Normal View History

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
WORKDIR /app
RUN pip install -r requirements.txt