added initial test addon commands

This commit is contained in:
jkoschke
2022-01-12 22:37:11 +01:00
parent d5a1e05944
commit 21f74efd34
4 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,7 @@
ARG BUILD_FROM
FROM $BUILD_FROM
COPY run.sh /
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]

View File

@ -0,0 +1,10 @@
name: "Hello world"
description: "My first addon"
version: "1.0.0"
slug: "hello_world"
arch:
- aarch64
- amd64
- armhf
- armv7
- i386

0
config.yaml~ Normal file
View File

3
run.sh
View File

@ -0,0 +1,3 @@
#!/usr/bin/with-contenv bashio
echo "Hello world!"