Skip to content

Commit

Permalink
Merge branch 'master' into reader-1.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderdw committed Apr 22, 2024
2 parents 6fc3080 + 088b233 commit bb8b8b3
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
20 changes: 12 additions & 8 deletions dsmr_reader/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,23 @@ ENV LANG C.UTF-8

RUN apk add --no-cache jq

# Add bashio
RUN \
mkdir -p /usr/src/bashio \
&& curl -L -f -s "https://github.com/hassio-addons/bashio/archive/v0.16.2.tar.gz" \
| tar -xzf - --strip 1 -C /usr/src/bashio \
&& mv /usr/src/bashio/lib /usr/lib/bashio \
&& ln -s /usr/lib/bashio/bashio /usr/bin/bashio \
curl -J -L -o /tmp/bashio.tar.gz \
"https://github.com/hassio-addons/bashio/archive/v0.14.3.tar.gz" \
&& mkdir /tmp/bashio \
&& tar zxvf \
/tmp/bashio.tar.gz \
--strip 1 -C /tmp/bashio \
\
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /usr/src/*
&& mv /tmp/bashio/lib /usr/lib/bashio \
&& ln -s /usr/lib/bashio/bashio /usr/bin/bashio \
&& rm -f -r \
/tmp/*

# HOMEASSISTANT Add-On OVERRIDES
COPY rootfs /
RUN chmod a+x /etc/s6-overlay/s6-rc.d/set-hassio-vars/run
RUN chmod a+x /etc/cont-init.d/01-set-hassio-vars

ENV DUID=0
ENV DGID=0
Expand Down
1 change: 0 additions & 1 deletion dsmr_reader/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"ingress": true,
"panel_icon": "mdi:leaf-circle-outline",
"hassio_api": true,
"init": false,
"map": ["backup:rw"],
"ports": {
"80/tcp": null
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/command/with-contenv bashio
#!/usr/bin/with-contenv bashio

#---------------------------------------------------------------------------------------------------------------------------
# HOMEASSISTANT Add-On OVERRIDES
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Empty file.

0 comments on commit bb8b8b3

Please sign in to comment.