diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f23169c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM scratch +LABEL "org.opencontainers.image.authors"="Vincent Batts " +LABEL "org.opencontainers.image.url"="https://github.com/vbatts/ohman" +LABEL "org.opencontainers.image.licenses"="MIT" +COPY ohman /ohman +ENTRYPOINT ["/ohman"] diff --git a/ohman b/ohman new file mode 100755 index 0000000..e93aa31 Binary files /dev/null and b/ohman differ diff --git a/ohman.c b/ohman.c new file mode 100644 index 0000000..1c09502 --- /dev/null +++ b/ohman.c @@ -0,0 +1,5 @@ +#include + +int main() { + printf("OHMAN\n"); +}