Update Docker configurations and dependencies for Jetson deployment

- Added image specifications for services in `docker-compose.demo-jetson.yml` and `docker-compose.jetson.yml` to streamline deployment.
- Updated `Dockerfile.gpu` to use the development version of the CUDA runtime for enhanced compatibility.
- Modified `Dockerfile.jetson` to switch to a newer JetPack base image and adjusted the requirements file to include additional dependencies for improved functionality.
- Removed obsolete deployment scripts and calibration cache generation script to clean up the project structure.

Made-with: Cursor
This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-04-06 05:00:08 +03:00
parent 8116b55813
commit 26900d0aee
10 changed files with 103 additions and 154 deletions
+3
View File
@@ -2,6 +2,7 @@ name: detections-demo-jetson
services:
loader:
image: ${REGISTRY:-docker.azaion.com}/detections-loader-mock:${TAG:-latest}
build:
context: ./e2e/mocks/loader
ports:
@@ -12,6 +13,7 @@ services:
- demo-net
annotations:
image: ${REGISTRY:-docker.azaion.com}/detections-annotations-mock:${TAG:-latest}
build:
context: ./e2e/mocks/annotations
ports:
@@ -20,6 +22,7 @@ services:
- demo-net
detections:
image: ${REGISTRY:-docker.azaion.com}/detections-jetson:${TAG:-latest}
build:
context: .
dockerfile: Dockerfile.jetson