mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
b426ff5292
this can be useful when testing timeouts etc in the dataproxy ref #16923
8 lines
102 B
Docker
8 lines
102 B
Docker
|
|
FROM golang:latest
|
|
ADD main.go /
|
|
WORKDIR /
|
|
RUN go build -o main .
|
|
EXPOSE 3011
|
|
ENTRYPOINT ["/main"]
|