Last active
March 26, 2019 06:14
-
-
Save yottta/c6da119480f0885db5bcd82199f9304f to your computer and use it in GitHub Desktop.
Medium article about WebSockets throughout Varnish - dockerfile productService
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:1.12.1 | |
WORKDIR /ws-server | |
ADD main.go go.sum go.mod /ws-server/ | |
RUN go build | |
ENTRYPOINT ["/ws-server/product-service"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment