diff options
Diffstat (limited to 'stdin-service/Dockerfile')
-rw-r--r-- | stdin-service/Dockerfile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/stdin-service/Dockerfile b/stdin-service/Dockerfile new file mode 100644 index 0000000..8fa6104 --- /dev/null +++ b/stdin-service/Dockerfile @@ -0,0 +1,10 @@ +FROM golang:latest + +WORKDIR /home +COPY *.go /home/ + +RUN go get github.com/gorilla/mux + +EXPOSE 3333 + +ENTRYPOINT go run . |