Skip to content

Commit 72ab67c

Browse files
committed
add typing-extensions to python requirements
1 parent 2310d5a commit 72ab67c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

docker/ubuntu/ubuntu-testing.Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,12 @@ RUN \
3434
WORKDIR /home/dlstreamer
3535
USER dlstreamer
3636

37+
COPY ./requirements.txt /home/dlstreamer/requirements.txt
38+
3739
RUN \
3840
python3 -m venv /python3venv && \
3941
/python3venv/bin/pip3 install --no-cache-dir --upgrade pip && \
40-
/python3venv/bin/pip3 install --no-cache-dir --no-dependencies PyGObject==3.50.0 setuptools==78.1.1 numpy==2.2.0 tqdm==4.67.1 opencv-python==4.11.0.86
42+
/python3venv/bin/pip3 install --no-cache-dir --no-dependencies -r /home/dlstreamer/requirements.txt
4143

4244
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
4345
CMD [ "bash", "-c", "pgrep bash > /dev/null || exit 1" ]

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ numpy==2.2.0
22
tqdm==4.67.1
33
opencv-python==4.11.0.86
44
PyGObject==3.50.0
5-
setuptools==78.1.1
5+
setuptools==78.1.1
6+
typing-extensions==4.15.0

0 commit comments

Comments
 (0)