ros2_docker_template/docker/hello-world.Dockerfile

10 lines
186 B
Docker
Raw Normal View History

2023-10-23 09:44:31 +00:00
# explicitly use Debian for maximum cross-architecture compatibility
FROM debian:bullseye-slim AS hello-world
WORKDIR /APP
COPY ./docker .
RUN chmod +x hello.sh
CMD ["/APP/hello.sh"]