Use absolute paths
Some checks failed
Test and build / test (push) Successful in 1m0s
Test and build / Build collector (push) Failing after 1m4s
Test and build / Build receiver (amd64, , linux) (push) Failing after 1m7s
Test and build / Build receiver (arm, 6, linux) (push) Failing after 1m7s
Test and build / Build receiver (arm, 7, linux) (push) Failing after 1m6s

This commit is contained in:
2026-02-23 12:52:32 +01:00
parent efec822ad2
commit 1f22ab6dbc
2 changed files with 4 additions and 4 deletions

View File

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