diff options
| author | Michael Grote | 2023-06-10 10:57:33 +0200 |
|---|---|---|
| committer | Michael Grote | 2023-06-10 10:57:33 +0200 |
| commit | cde8a59e3bacfc4eb914c3e226689250168ac6fc (patch) | |
| tree | 38060377ba7e3f561fadd1127654f6535156e208 /Dockerfile | |
| parent | 59ab15133f72ef0f1c586245c3bacc0cce896915 (diff) | |
ci: DL3006
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -FROM alpine AS builder +FROM alpine:3 AS builder ARG MDNS_REPEATER_VERSION=local WORKDIR / COPY mdns-repeater.c mdns-repeater.c @@ -6,7 +6,7 @@ RUN set -ex && \ apk add --no-cache build-base && \ gcc -o /bin/mdns-repeater mdns-repeater.c -DMDNS_REPEATER_VERSION=\"${MDNS_REPEATER_VERSION}\" -FROM alpine +FROM alpine:3 RUN set -ex && \ apk add --no-cache vlan libcap bash |