Initial commit of Simple Home Assistant Addon with web interface

This commit is contained in:
Manu
2025-06-01 12:04:22 +02:00
commit 3d987c3eb6
12 changed files with 660 additions and 0 deletions

View File

@ -0,0 +1,21 @@
FROM homeassistant/amd64-base:latest
# Install basic dependencies
RUN apt-get update && \
apt-get install -y \
python3-pip \
python3-dev \
build-essential \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Copy addon files
COPY requirements.txt /
COPY run.sh /
COPY config.yaml /
# Set permissions
RUN chmod +x /run.sh
# Start the addon
CMD ["/run.sh"]