fix dockerfile
Some checks failed
ci/woodpecker/tag/woodpecker Pipeline failed

This commit is contained in:
Michael Balsillie 2022-08-22 11:35:04 +12:00
parent 3cc928f37e
commit b0f950f96f

View File

@ -1,8 +1,8 @@
ARG SHOUTRRR_VERSION=v0.6.1 ARG SHOUTRRR_VERSION=v0.6.1
FROM golang:bullseye AS builder FROM golang:bullseye AS builder
RUN git clone https://github.com/containrrr/shoutrrr.git shoutrrr \ RUN git clone https://github.com/containrrr/shoutrrr.git shoutrrr && \
cd ./shoutrrr \ cd ./shoutrrr && \
git checkout ${SHOUTRRR_VERSION} \ git checkout ${SHOUTRRR_VERSION} && \
go build -o /output ./shoutrrr go build -o /output ./shoutrrr
FROM debian:11-slim FROM debian:11-slim