-
Notifications
You must be signed in to change notification settings - Fork 168
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 #150 from danielperna84/devel
0.3.5
- Loading branch information
Showing
13 changed files
with
8,773 additions
and
169 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 +1,8 @@ | ||
.vscode/ | ||
.vscode/ | ||
*.pyc | ||
# Setuptools distribution folder. | ||
/dist/ | ||
|
||
# Python egg metadata, regenerated from source files by setuptools. | ||
/*.egg-info | ||
/*.egg |
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 |
---|---|---|
|
@@ -4,15 +4,12 @@ LABEL maintainer="Daniel Perna <[email protected]>" | |
RUN apk update && \ | ||
apk upgrade && \ | ||
apk add --no-cache bash git openssh && \ | ||
pip install --no-cache-dir gitpython pyotp | ||
|
||
WORKDIR /app | ||
COPY configurator.py /app/ | ||
pip install --no-cache-dir hass-configurator | ||
|
||
EXPOSE 3218 | ||
VOLUME /config | ||
|
||
ENV HC_GIT true | ||
ENV HC_BASEPATH /config | ||
|
||
ENTRYPOINT ["python", "/app/configurator.py"] | ||
ENTRYPOINT ["hass-configurator"] |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
include hass_configurator/dev.html |
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.