fix: release package url is incorrect (#1011)

This commit is contained in:
reoring
2022-02-12 10:13:04 +03:00
committed by GitHub
parent f780d4a21d
commit a62930856a
+1 -1
View File
@@ -3,7 +3,7 @@ FROM alpine:3.12 as builder
ARG RELEASE_VERSION
RUN apk add --no-cache ca-certificates openssl
RUN wget https://github.com/buger/goreplay/releases/download/${RELEASE_VERSION}/gor_${RELEASE_VERSION}_x64.tar.gz -O gor.tar.gz
RUN wget https://github.com/buger/goreplay/releases/download/v${RELEASE_VERSION}/gor_${RELEASE_VERSION}_x64.tar.gz -O gor.tar.gz
RUN tar xzf gor.tar.gz
FROM scratch