ros2_docker_template/docker/my_example.Dockerfile

7 lines
152 B
Docker
Raw Normal View History

2023-08-24 10:41:03 +00:00
# explicitly use Debian for maximum cross-architecture compatibility
2023-10-23 09:17:03 +00:00
FROM debian:bullseye-slim AS hello-world
2023-08-24 10:41:03 +00:00
2023-10-23 09:17:56 +00:00
COPY ./docker .
2023-08-24 10:41:03 +00:00
2023-10-23 09:18:23 +00:00
CMD ["cat ./hello.txt"]