moved to seperate folder
This commit is contained in:
7
HelloWorldAddon/Dockerfile
Normal file
7
HelloWorldAddon/Dockerfile
Normal file
@@ -0,0 +1,7 @@
|
||||
ARG BUILD_FROM
|
||||
FROM $BUILD_FROM
|
||||
|
||||
COPY run.sh /
|
||||
RUN chmod a+x /run.sh
|
||||
|
||||
CMD [ "/run.sh" ]
|
||||
10
HelloWorldAddon/config.yaml
Normal file
10
HelloWorldAddon/config.yaml
Normal 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
|
||||
3
HelloWorldAddon/run.sh
Normal file
3
HelloWorldAddon/run.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/with-contenv bashio
|
||||
|
||||
echo "Hello world!"
|
||||
Reference in New Issue
Block a user