Initial import
Some checks failed
Test and build / Build (amd64, , linux) (push) Failing after 35s
Test and build / Build (arm, 6, linux) (push) Failing after 37s
Test and build / Build (arm, 7, linux) (push) Failing after 37s
Test and build / test (push) Successful in 58s

This commit is contained in:
2026-02-23 15:14:26 +01:00
parent 5c53d38b6c
commit 0ec2808fdd
7 changed files with 433 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM alpine:3
ARG TARGETARCH
ARG TARGETVARIANT
COPY ./etc /etc/hamview
COPY ./build/hamview-receiver-${$TARGETARCH}${TARGETVARIANT#v} /opt/hamview/bin/hamview-receiver
WORKDIR /opt/hamview
ENTRYPOINT ["bin/hamview-receiver"]
CMD [ "protocol" ]