mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
* Update Dockerfile to work with v1.1.0 * Update Dockerfile Co-authored-by: Leonid Bugaev <leonsbox@gmail.com>
9 lines
266 B
Docker
9 lines
266 B
Docker
FROM alpine:latest as builder
|
|
RUN apk add --no-cache ca-certificates openssl
|
|
RUN wget https://github.com/buger/goreplay/releases/download/v1.2.0/gor_v1.2.0_x64.tar.gz -O gor.tar.gz
|
|
RUN tar xzf gor.tar.gz
|
|
|
|
FROM scratch
|
|
COPY --from=builder /gor .
|
|
ENTRYPOINT ["./gor"]
|