Skip to content

Commit 0e73280

Browse files
committed
chore: update EI container version
1 parent c46fa66 commit 0e73280

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

containers/ei-models-runner/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# SPDX-License-Identifier: MPL-2.0
44

5-
FROM public.ecr.aws/z9b3d4t5/inference-container-qc-adreno-702:f751b08f7270c84b428b6c3d1028e28a24fbc23a
5+
FROM public.ecr.aws/z9b3d4t5/inference-container-qc-adreno-702:a7ec92c6c9b2b9c94255baed18328cf4e2fda6d0
66

77
# Create the user and group needed to run the container as non-root
88
RUN set -ex; \

src/arduino/app_bricks/video_imageclassification/brick_compose.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ services:
1616
- "/run/udev:/run/udev"
1717
command: ["--model-file", "${EI_CLASSIFICATION_MODEL:-/models/ootb/ei/mobilenet-v2-224px.eim}", "--dont-print-predictions", "--mode", "streaming-tcp-server", "--preview-original-resolution"]
1818
healthcheck:
19-
test: [ "CMD-SHELL", "wget -q --spider http://ei-video-classification-runner:4912 || exit 1" ]
19+
# test: [ "CMD-SHELL", "wget -q --spider http://ei-video-classification-runner:4912 || exit 1" ]
20+
# test: [ "CMD-SHELL", "pgrep -f gstreamer || pgrep -f gst-launch || exit 1" ]
21+
test: [ "CMD-SHELL", "netstat -tuln | grep :5050 || exit 1" ]
2022
interval: 2s
2123
timeout: 2s
2224
retries: 25

src/arduino/app_bricks/video_objectdetection/brick_compose.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ services:
1616
- "/run/udev:/run/udev"
1717
command: ["--model-file", "${EI_OBJ_DETECTION_MODEL:-/models/ootb/ei/yolo-x-nano.eim}", "--dont-print-predictions", "--mode", "streaming-tcp-server", "--preview-original-resolution"]
1818
healthcheck:
19-
test: [ "CMD-SHELL", "wget -q --spider http://ei-video-obj-detection-runner:4912 || exit 1" ]
19+
# test: [ "CMD-SHELL", "wget -q --spider http://ei-video-obj-detection-runner:4912 || exit 1" ]
20+
# test: [ "CMD-SHELL", "pgrep -f gstreamer || pgrep -f gst-launch || exit 1" ]
21+
test: [ "CMD-SHELL", "netstat -tuln | grep :5050 || exit 1" ]
2022
interval: 2s
2123
timeout: 2s
2224
retries: 25

0 commit comments

Comments
 (0)