Skip to content

Commit

Permalink
Fix dockerfile - Add another possible failure on README
Browse files Browse the repository at this point in the history
  • Loading branch information
xNinjaKittyx committed Nov 2, 2021
1 parent b7b48d1 commit f2040ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ENV INFLUX_HOST="localhost" \

WORKDIR /app

RUN apt update && apt upgrade && apt clean && rm -rf /var/lib/apt/lists/* && pip install --no-cache-dir poetry && mkdir -p /logs
RUN apt update && apt upgrade -y && apt clean && rm -rf /var/lib/apt/lists/* && pip install --no-cache-dir poetry && mkdir -p /logs


COPY pyproject.toml poetry.lock ./
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ These are solely my observations - may not be actually true.
- I wouldn't suggest having any of this information exposed to the public network in any way unless you modify the script/library first. Mac Address is sensitive information and can have others attempt to steal your network provider.
- Because of how slow the modem is sometimes, you will get `requests.exceptions.ChunkedEncodingError - InvalidChunkLength` once in a while. This can be safely ignored. You *might* be able to reduce this occurrance if you increase `SLEEP_TIMER`
- I might be wrong, but I believe it's possible to be able to access the modem's HNAP on a different machine while you're running the data export without logging in. Just to be safe, I would recommend setting your firewall so that not all clients can access the modem's IP.
- It is possible to permanently crash your modem's webserver rendering it inaccessible until reboot. - I somehow ran into this recently (11/2/2021)


## Credits
Expand Down

0 comments on commit f2040ac

Please sign in to comment.