ci: DL3019
This commit is contained in:
parent
bbd51013f1
commit
1d99f964f4
1 changed files with 2 additions and 2 deletions
|
@ -2,13 +2,13 @@ FROM alpine AS builder
|
|||
ARG MDNS_REPEATER_VERSION=local
|
||||
ADD mdns-repeater.c mdns-repeater.c
|
||||
RUN set -ex && \
|
||||
apk add build-base && \
|
||||
apk add --no-cache build-base && \
|
||||
gcc -o /bin/mdns-repeater mdns-repeater.c -DMDNS_REPEATER_VERSION=\"${MDNS_REPEATER_VERSION}\"
|
||||
|
||||
FROM alpine
|
||||
|
||||
RUN set -ex && \
|
||||
apk add vlan libcap bash
|
||||
apk add --no-cache vlan libcap bash
|
||||
COPY --from=builder /bin/mdns-repeater /bin/mdns-repeater
|
||||
RUN chmod +x /bin/mdns-repeater
|
||||
RUN setcap cap_net_raw=+ep /bin/mdns-repeater
|
||||
|
|
Reference in a new issue