Files
hamview/cmd/hamview-collector/Dockerfile
maze f234497162
Some checks failed
Test and build / Test and lint (push) Successful in 1m12s
Test and build / Build collector (push) Failing after 1m15s
Test and build / Build receiver (push) Failing after 1m29s
Refactor
2026-02-23 21:21:23 +01:00

11 lines
291 B
Docker

FROM alpine:3
RUN apk add --no-cache dumb-init=1.2.5-r3
WORKDIR /app
COPY ./etc /app/config
COPY ./build/hamview-collector /app/hamview-collector
COPY ./cmd/hamview-collector/entrypoint.sh /entrypoint.sh
ENTRYPOINT ["dumb-init", "/entrypoint.sh"]