Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. FROM golang:1.8
  2.  
  3. WORKDIR /go/src/app
  4. COPY stream.go stream.go
  5. RUN go get github.com/CaliDog/certstream-go
  6. RUN go get github.com/op/go-logging
  7. RUN go build stream.go
  8.  
  9. CMD ["./stream"]
  10.  
  11.  
  12. ## docker build -t certstream_go:latest .
  13. ## docker run certstream_go
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement