switching to yaml file

This commit is contained in:
Björn Ellensohn 2023-07-27 12:46:42 +02:00
parent f42186d43e
commit e2ed2bdd28
2 changed files with 4 additions and 3 deletions

View File

@ -5,7 +5,7 @@ services:
image: ghcr.io/bjoernellens1/ros2_rmp/rmp:base
build:
context: .
dockerfile: docker/Dockerfile_arm64
dockerfile: docker/Dockerfile.arm64
args:
ROS_DISTRO: humble
target: base
@ -31,9 +31,10 @@ services:
overlay:
extends: base
image: ghcr.io/bjoernellens1/ros2_rmp/rmp:overlay
platform: linux/arm64
build:
context: .
dockerfile: docker/Dockerfile_arm64
dockerfile: docker/Dockerfile.arm64
target: overlay

View File

@ -4,7 +4,7 @@ ARG UNDERLAY_WS=/rmp_ws
########################################
# Base Image for Bot Mini Control #
########################################
FROM ros:${ROS_DISTRO} as base
FROM --platform=linux/arm64 ros:${ROS_DISTRO} as base
ENV ROS_DISTRO=${ROS_DISTRO}
SHELL ["/bin/bash", "-c"]