Adding requirements.txt. RE:#1952

This commit is contained in:
James Douglass 2025-05-27 14:15:16 -07:00
parent fdf0afdab0
commit 04c03a59d2
1 changed files with 1 additions and 0 deletions

View File

@ -8,6 +8,7 @@ RUN apt update && apt install -y python3 python3-dev python3-pip python3-build b
ADD src /invest/src
ADD pyproject.toml /invest/pyproject.toml
ADD setup.py /invest/setup.py
ADD requirements.txt /invest/requirements.txt
RUN cd /invest && python3 -m build
# Create the container for distribution that has runtime dependencies.