ros2_docker_template/docker/my_example.Dockerfile

10 lines
193 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:18:48 +00:00
WORKDIR /APP
2023-10-23 09:17:56 +00:00
COPY ./docker .
2023-10-23 09:24:08 +00:00
RUN chmod +x hello.sh
2023-08-24 10:41:03 +00:00
2023-10-23 09:24:08 +00:00
ENTRYPOINT ["/APP/hello.sh"]