From b0f950f96ff71d2501047f4067f96fad30295e73 Mon Sep 17 00:00:00 2001 From: Michael Balsillie Date: Mon, 22 Aug 2022 11:35:04 +1200 Subject: [PATCH] fix dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ba859f5..8ee8db5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ ARG SHOUTRRR_VERSION=v0.6.1 FROM golang:bullseye AS builder -RUN git clone https://github.com/containrrr/shoutrrr.git shoutrrr \ - cd ./shoutrrr \ - git checkout ${SHOUTRRR_VERSION} \ +RUN git clone https://github.com/containrrr/shoutrrr.git shoutrrr && \ + cd ./shoutrrr && \ + git checkout ${SHOUTRRR_VERSION} && \ go build -o /output ./shoutrrr FROM debian:11-slim