Files
hamview-receiver/Dockerfile
maze 764856cb0d
All checks were successful
Test and build / Test & lint (push) Successful in 1m13s
Test and build / Build (push) Successful in 1m47s
Downgrade dumb-init
2026-02-23 17:36:31 +01:00

13 lines
348 B
Docker

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