about summary refs log tree commit diff
path: root/Dockerfile
blob: 6d993effc3abebd41fcf9a70b19d34e0522bba25 (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM golang:latest

WORKDIR /home
COPY *.go /home/

RUN ["go", "get", "github.com/gorilla/mux"]
RUN ["go", "build", "-o", "metrics-bundler"]

EXPOSE 8080

ENTRYPOINT ["./metrics-bundler"]