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