diff options
| author | Michael Grote | 2024-03-13 08:53:34 +0100 |
|---|---|---|
| committer | Michael Grote | 2024-03-13 08:53:34 +0100 |
| commit | a837e61471c5c7c2ae8de2295dcdaf2ab8d6db4a (patch) | |
| tree | dad8d7b30080fa458e243cfc66064aedac7aa9fb | |
| parent | af4745bfc06f69bb0a7794ed569f27d4d9243d62 (diff) | |
set alpine version
| -rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -FROM alpine:20231219 AS builder +FROM alpine:3.19.1 AS builder ARG MDNS_REPEATER_VERSION=local WORKDIR / COPY mdns-repeater.c mdns-repeater.c @@ -7,7 +7,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:20231219 +FROM alpine:3.19.1 # hadolint ignore=DL3018 RUN set -ex && \ apk add --no-cache vlan libcap bash |