Skip to content

Commit 0540f03

Browse files
committed
List scene common dependencies
1 parent b7c0ff9 commit 0540f03

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SHELL := /bin/bash
99
# Build folders
1010
COMMON_FOLDER := scene_common
1111
CORE_IMAGE_FOLDERS := autocalibration controller manager model_installer
12-
IMAGE_FOLDERS := $(CORE_IMAGE_FOLDERS) mapping cluster_analytics tracker
12+
IMAGE_FOLDERS := $(CORE_IMAGE_FOLDERS) mapping cluster_analytics tracker scene_common
1313

1414
# Image variables
1515
IMAGE_PREFIX := scenescape

scene_common/Dockerfile

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

44
# -------------- Common Base Stage --------------
5-
FROM python:3.11-slim-bookworm@sha256:ee710afcfb733f4a750d9be683cf054b5cd247b6c5f5237a6849ea568b90ab15 AS scenescape-common-base
5+
ARG RUNTIME_OS_IMAGE=python:3.11-slim-bookworm@sha256:ee710afcfb733f4a750d9be683cf054b5cd247b6c5f5237a6849ea568b90ab15
6+
FROM ${RUNTIME_OS_IMAGE} AS scenescape-common-base
67

78
# We use root for runtime init. The command in ENTRYPOINT will drop to an unprivileged user.
89
# hadolint ignore=DL3002

0 commit comments

Comments
 (0)