home-assistant-newt-addon/Dockerfile
Jørgen Ferdinand 17337c1323 First Launch
🚀 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
2025-03-07 21:48:20 +01:00

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" ]