mirror of
https://github.com/bjoernellens1/ros2_docker_template.git
synced 2024-11-23 15:55:05 +00:00
10 lines
186 B
Docker
10 lines
186 B
Docker
# 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"]
|