Skip to content

Commit

Permalink
Upgrade base images (#72)
Browse files Browse the repository at this point in the history
Upgrade baseimage, correct depthai-core version

Co-authored-by: Jari Hodju <[email protected]>
  • Loading branch information
mehmetkillioglu and jari-hodju authored Nov 2, 2023
1 parent 3b932eb commit 5b6e532
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
version: 2
updates:
- package-ecosystem: "docker"
directory: "/"
directory: "/Dockerfile"
schedule:
interval: "daily"
groups:
Expand Down
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=${BUILDPLATFORM:-linux/amd64} ghcr.io/tiiuae/fog-ros-sdk:v3.0.1-${TARGETARCH:-amd64} AS builder
FROM --platform=${BUILDPLATFORM:-linux/amd64} ghcr.io/tiiuae/fog-ros-sdk:v3.0.2-${TARGETARCH:-amd64} AS builder

ARG TARGETARCH

Expand Down Expand Up @@ -31,7 +31,7 @@ RUN /packaging/build_colcon_sdk.sh ${TARGETARCH:-amd64}
# ▲ runtime ──┐
# └── build ▼

FROM ghcr.io/tiiuae/fog-ros-baseimage:v3.0.1
FROM ghcr.io/tiiuae/fog-ros-baseimage:v3.0.2

RUN apt update \
&& apt install -y --no-install-recommends \
Expand All @@ -51,6 +51,7 @@ RUN apt update \
libopencv-ts \
opencv-staticdev \
libdepthai-core20 \
&& apt clean \
&& rm -rf /var/lib/apt/lists/*

RUN mkdir /depthai_configs
Expand Down

0 comments on commit 5b6e532

Please sign in to comment.