Files
hamview/cmd/hamview-collector/Dockerfile
maze 3106b2cf45
All checks were successful
Test and build / Test and lint (push) Successful in 1m14s
Test and build / Build collector (push) Successful in 1m32s
Test and build / Build receiver (push) Successful in 1m48s
Add bash
2026-02-24 15:51:31 +01:00

11 lines
305 B
Docker

FROM alpine:3
RUN apk add --no-cache dumb-init=1.2.5-r3 bash=5.3.3-r1
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"]