From f1cd38e7f3a20c1ef0cb99200c1595a646de068c Mon Sep 17 00:00:00 2001 From: bunix42 Date: Thu, 12 Aug 2021 12:04:13 +0000 Subject: [PATCH] fill dockerfile with life --- Dockerfile | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 90df6f4..f48bb06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,14 @@ -FROM alpine +FROM alpine:3.7 as builder -LABEL maintainer="hanjo@bunix.de" \ No newline at end of file +LABEL maintainer="hanjo@bunix.de" + +RUN apk --no-cache add git && \ + mkdir /adr && \ + cd /adr && \ + git clone https://github.com/npryce/adr-tools.git + +FROM alpine:3.7 as release + +RUN apk --no-cache add bash + +COPY --from=builder /adr/adr-tools/src/. /usr/local/bin/ \ No newline at end of file