🚀 Add Home Assistant Newt Add-on
Commit description:
Added config.yaml for add-on configuration
Created Dockerfile to build the add-on container
Implemented run.sh to start and manage the Newt container
Included a detailed README.md with installation and usage instructions
Prepared repository for Home Assistant custom add-on support
10 lines
180 B
Docker
10 lines
180 B
Docker
FROM ghcr.io/hassio-addons/base:14.0.0
|
|
|
|
# Install dependencies
|
|
RUN apk add --no-cache docker-cli
|
|
|
|
# Copy the run script
|
|
COPY run.sh /run.sh
|
|
RUN chmod +x /run.sh
|
|
|
|
CMD [ "/run.sh" ]
|