From a559172718bdb88c4476ab8df5aa410ba28565d6 Mon Sep 17 00:00:00 2001 From: bjoernellens1 <64093272+bjoernellens1@users.noreply.github.com> Date: Mon, 23 Oct 2023 11:44:31 +0200 Subject: [PATCH] Create hello-world.Dockerfile --- docker/hello-world.Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 docker/hello-world.Dockerfile diff --git a/docker/hello-world.Dockerfile b/docker/hello-world.Dockerfile new file mode 100644 index 0000000..ab72ff2 --- /dev/null +++ b/docker/hello-world.Dockerfile @@ -0,0 +1,9 @@ +# 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"]