File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -181,3 +181,7 @@ License: CC-BY-4.0
181181Files: renovate.json
182182Copyright: 2024 Double Open Oy
183183License: CC-BY-4.0
184+
185+ Files: requirements.txt
186+ Copyright: 2025 Double Open Oy
187+ License: CC-BY-4.0
Original file line number Diff line number Diff line change @@ -16,8 +16,11 @@ RUN apt-get update && \
1616# Create a virtual environment for Python
1717RUN python3 -m venv /venv
1818
19+ # Copy the requirements file to the container
20+ COPY requirements.txt /venv/
21+
1922# Activate the virtual environment and install required Python packages
20- RUN /venv/bin/pip install scancode-toolkit==32.1.0
23+ RUN /venv/bin/pip install -r /venv/requirements.txt
2124
2225# DOS
2326
Original file line number Diff line number Diff line change 1+ scancode-toolkit == 32.1.0
You can’t perform that action at this time.
0 commit comments