Initial SolarEdge Optimizer Home Assistant App

This commit is contained in:
2026-08-10 09:04:35 +02:00
commit f2887a0ab4
38 changed files with 4253 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
FROM oven/bun:1.3.14-alpine
ARG BUILD_VERSION=dev
ARG BUILD_ARCH=amd64
LABEL \
io.hass.version="${BUILD_VERSION}" \
io.hass.type="app" \
io.hass.arch="${BUILD_ARCH}"
RUN apk add --no-cache tzdata
WORKDIR /app
COPY dist/server.js /app/server.js
COPY run.sh /run.sh
RUN chmod 0755 /run.sh
EXPOSE 8099
CMD ["/run.sh"]