adding ha addon support

This commit is contained in:
2024-01-26 23:19:14 +01:00
parent 0425f6e8df
commit 6774e14ecd
34 changed files with 6585 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
ARG BUILD_FROM
FROM $BUILD_FROM
COPY ./package.json ./
COPY ./package-lock.json ./
COPY ./src ./src
COPY ./tsconfig.json ./
RUN npm install
RUN npm install ts-node
COPY run.sh /
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]