# 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"]