From 9a158e7916bb3b608b45dc64917a959601f71b5a Mon Sep 17 00:00:00 2001 From: David Florness Date: Sat, 1 Apr 2023 14:33:31 -0400 Subject: [PATCH] Dockerfile: specify alpine version --- contrib/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/Dockerfile b/contrib/Dockerfile index 1bc47c8..ea15887 100644 --- a/contrib/Dockerfile +++ b/contrib/Dockerfile @@ -1,11 +1,11 @@ -FROM alpine AS builder +FROM alpine:3.17 AS builder RUN apk update RUN apk add g++ go make olm-dev COPY . . RUN make -FROM alpine +FROM alpine:3.17 COPY --from=builder /msc-link-bot /usr/local/bin/msc-link-bot RUN apk add olm && \ -- 2.38.4