diff options
| author | Michael Grote | 2023-06-10 10:53:31 +0200 |
|---|---|---|
| committer | Michael Grote | 2023-06-10 10:53:31 +0200 |
| commit | 25e7e11b14fe176cbcbee1ea1645d55d0f93ac67 (patch) | |
| tree | 6d341b24e7ffe76d47724a1cb553db946ab24b6b /Dockerfile | |
| parent | 7e303af240b256e42ffe1339a8d5b9e538e93820 (diff) | |
ci: DL3059
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -10,10 +10,7 @@ FROM alpine RUN set -ex && \ 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 - COPY run.sh /app/ -RUN chmod +x /app/run.sh +RUN chmod +x /bin/mdns-repeater && setcap cap_net_raw=+ep /bin/mdns-repeater && chmod +x /app/run.sh ENTRYPOINT ["/app/run.sh", "${VLANS}"] |