aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Grote2023-06-10 10:57:33 +0200
committerMichael Grote2023-06-10 10:57:33 +0200
commitcde8a59e3bacfc4eb914c3e226689250168ac6fc (patch)
tree38060377ba7e3f561fadd1127654f6535156e208
parent59ab15133f72ef0f1c586245c3bacc0cce896915 (diff)
ci: DL3006
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 18eccb6..4cbc460 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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