forked from arthurkrupa/gree-hvac-mqtt-bridge
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from T-REX-XP/merge-from-orig
Merge from orig
- Loading branch information
Showing
9 changed files
with
415 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,14 @@ | ||
FROM homeassistant/amd64-base:latest | ||
ARG BUILD_FROM | ||
FROM $BUILD_FROM | ||
|
||
ENV LANG C.UTF-8 | ||
|
||
RUN apk add --no-cache jq nodejs nodejs-npm && \ | ||
npm set unsafe-perm true | ||
|
||
# Copy data for add-on | ||
RUN mkdir -p /usr/src/app | ||
WORKDIR /usr/src/app | ||
COPY . . | ||
RUN chmod +x run.sh | ||
|
||
RUN npm install | ||
|
||
#CMD [ "./run.sh" ] | ||
ENTRYPOINT ./run.sh | ||
CMD [ "./run.sh" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.