diff --git a/README.md b/README.md index aa52147..db27e6f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@

-

diff --git a/ash/Dockerfile b/ash/Dockerfile new file mode 100644 index 0000000..6e175a5 --- /dev/null +++ b/ash/Dockerfile @@ -0,0 +1,5 @@ +# syntax=docker/dockerfile:1 +# escape=\ +FROM 100hellos/000-base:local + +COPY --chown=human:human ./files /hello-world diff --git a/ash/Makefile b/ash/Makefile new file mode 100644 index 0000000..56b9235 --- /dev/null +++ b/ash/Makefile @@ -0,0 +1 @@ +include ../Makefile.language-container.mk \ No newline at end of file diff --git a/ash/files/hello-world.ash b/ash/files/hello-world.ash new file mode 100644 index 0000000..9c92727 --- /dev/null +++ b/ash/files/hello-world.ash @@ -0,0 +1,3 @@ +#!/usr/bin/env ash + +echo "Hello World!" diff --git a/dash/Dockerfile b/dash/Dockerfile new file mode 100644 index 0000000..f195fcc --- /dev/null +++ b/dash/Dockerfile @@ -0,0 +1,9 @@ +# syntax=docker/dockerfile:1 +# escape=\ +FROM 100hellos/000-base:local + +RUN sudo \ + apk add --no-cache \ + dash + +COPY --chown=human:human ./files /hello-world diff --git a/dash/Makefile b/dash/Makefile new file mode 100644 index 0000000..56b9235 --- /dev/null +++ b/dash/Makefile @@ -0,0 +1 @@ +include ../Makefile.language-container.mk \ No newline at end of file diff --git a/dash/files/hello-world.dash b/dash/files/hello-world.dash new file mode 100644 index 0000000..d197b60 --- /dev/null +++ b/dash/files/hello-world.dash @@ -0,0 +1,3 @@ +#!/usr/bin/env dash + +echo "Hello World!"