mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
* Fixed Dockerfile that fails during docker build * make build should use Dockerfile.dev since other make targets use it
6 lines
253 B
Docker
6 lines
253 B
Docker
FROM alpine:latest
|
|
RUN apk update && apk add ca-certificates && update-ca-certificates && apk add openssl
|
|
RUN wget https://github.com/buger/goreplay/releases/download/v0.16.0.2/gor_0.16.0_x64.tar.gz -O gor.tar.gz
|
|
RUN tar xzf gor.tar.gz
|
|
ENTRYPOINT ./gor
|