Skip to content

Commit

Permalink
Allow Installation of Insteon_MQTT Module via Pip in Addon
Browse files Browse the repository at this point in the history
Newer versions of Alpine Linux prevent the use of pip without
a flag.
  • Loading branch information
krkeegan committed Apr 15, 2024
1 parent 741e2b9 commit 9c77cd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk --no-cache add python3-dev
COPY . /opt/insteon-mqtt

RUN apk add --no-cache py3-pip && \
pip3 install /opt/insteon-mqtt && \
pip3 install --break-system-packages /opt/insteon-mqtt && \
chmod +x /opt/insteon-mqtt/hassio/entrypoint.sh

CMD ["/opt/insteon-mqtt/hassio/entrypoint.sh"]

0 comments on commit 9c77cd0

Please sign in to comment.