mirror of
https://github.com/bjoernellens1/ros2_docker_template.git
synced 2024-11-23 15:55:05 +00:00
7 lines
152 B
Docker
7 lines
152 B
Docker
# explicitly use Debian for maximum cross-architecture compatibility
|
|
FROM debian:bullseye-slim AS hello-world
|
|
|
|
COPY ./docker .
|
|
|
|
CMD ["cat ./hello.txt"]
|