From 2fcbf929b00aa1527846090d7f4cd40b76c30ca9 Mon Sep 17 00:00:00 2001 From: "Stanislav N. aka pztrn" Date: Wed, 29 Jun 2022 17:45:37 +0500 Subject: [PATCH] Update to Drone 2.12.1. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a7f31fe..539fb4d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ FROM code.pztrn.name/containers/mirror/golang:1.18.3-alpine as build -ENV DRONE_VERSION=2.12.0 +ENV DRONE_VERSION=2.12.1 RUN apk add -U --no-cache ca-certificates git build-base RUN mkdir -p /src/drone && \ cd /src/drone && \ - git clone https://github.com/drone/drone . && \ + git clone https://github.com/harness/drone . && \ git checkout -b v${DRONE_VERSION} RUN cd /src/drone/cmd/drone-server && go build -tags "nolimit" -ldflags "-extldflags \"-static\"" -o drone-server