Commit description: Moved add-on files into a dedicated newt/ subfolder Added repository.json to the root for Home Assistant recognition Ensured config.yaml is inside the newt/ directory Verified correct directory structure for add-on compatibility Improved repository setup for proper installation in Home Assistant
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" ]
|