Some checks failed
Test and build / test (push) Successful in 1m0s
Test and build / Build collector (push) Failing after 1m6s
Test and build / Build receiver (amd64, , linux) (push) Failing after 1m7s
Test and build / Build receiver (arm, 6, linux) (push) Failing after 1m8s
Test and build / Build receiver (arm, 7, linux) (push) Failing after 1m7s
7 lines
250 B
Docker
7 lines
250 B
Docker
FROM alpine:3
|
|
WORKDIR /opt/hamview
|
|
COPY etc /etc/hamview
|
|
COPY build/hamview-collector /opt/hamview/bin/hamview-collector
|
|
ENTRYPOINT ["bin/hamview-collector"]
|
|
CMD [ "--config", "/etc/hamview/hamview-collector.yaml" ]
|