ros2_docker_template/docker/my_example.Dockerfile

7 lines
147 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:16:31 +00:00
FROM debian:bullseye-slim AS cps-hello-world
2023-08-24 10:41:03 +00:00
COPY . .
2023-10-23 09:16:31 +00:00
CMD ["< ./hello.txt"]