Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tekmar_packetserv/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.3.1
- Update to base 3.19
- Remove tempio

## 1.3.0
- Drop support for armhf, armv7, and i386 architectures.

Expand Down
16 changes: 7 additions & 9 deletions tekmar_packetserv/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
ARG BUILD_FROM
FROM ${BUILD_FROM}
FROM $BUILD_FROM

# Add env
ENV LANG=C.UTF-8

ARG TEMPIO_VERSION BUILD_ARCH
RUN \
curl -sSLf -o /usr/bin/tempio \
"https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${BUILD_ARCH}"

# Install requirements for add-on
RUN apk add --no-cache python3
RUN apk add --no-cache py3-pip
RUN pip3 --no-cache-dir install pyserial
RUN \
apk add --no-cache python3 \
&& apk add --no-cache py3-pip \
&& apk add --no-cache py3-pyserial

# Copy data
COPY rootfs /
6 changes: 2 additions & 4 deletions tekmar_packetserv/build.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
# https://developers.home-assistant.io/docs/add-ons/configuration#add-on-dockerfile
build_from:
aarch64: "ghcr.io/home-assistant/aarch64-base:3.18"
amd64: "ghcr.io/home-assistant/amd64-base:3.18"
aarch64: "ghcr.io/home-assistant/aarch64-base:3.19"
amd64: "ghcr.io/home-assistant/amd64-base:3.19"
labels:
org.opencontainers.image.title: "Home Assistant Add-on: Tekmar packet server"
org.opencontainers.image.description: "Communicate with the Tekmar Gateway 482."
org.opencontainers.image.source: "https://github.com/WillCodeForCats/tekmar-packetserv"
org.opencontainers.image.licenses: "MIT License"
args:
TEMPIO_VERSION: "2021.09.0"
2 changes: 1 addition & 1 deletion tekmar_packetserv/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Tekmar Packet Server",
"version": "1.3.0",
"version": "1.3.1",
"url": "https://github.com/WillCodeForCats/tekmar-packetserv",
"slug": "tekmar_packetserv",
"description": "Connect with the Tekmar Gateway 482",
Expand Down