Some checks failed
Run tests / build (amd64, , linux) (push) Has been cancelled
Run tests / build (arm, 6, linux) (push) Has been cancelled
Run tests / build (arm, 7, linux) (push) Has been cancelled
Run tests / build (stable) (push) Has been cancelled
Run tests / test (stable) (push) Has been cancelled
9 lines
302 B
Docker
9 lines
302 B
Docker
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
|
|
ENTRYPOINT ["bin/hamview-receiver"]
|
|
CMD [ "protocol" ]
|