Files
hamview/cmd/hamview-receiver/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

13 lines
383 B
Docker

FROM alpine:3
RUN apk add --no-cache dumb-init=1.2.5-r3 bash=5.3.3-r1
WORKDIR /app
ARG TARGETARCH
ARG TARGETVARIANT
COPY ./etc /app/config
COPY ./build/hamview-receiver-${TARGETARCH}${TARGETVARIANT#v} /app/hamview-receiver
COPY ./cmd/hamview-receiver/entrypoint.sh /entrypoint.sh
ENTRYPOINT ["dumb-init", "/entrypoint.sh"]