about summary refs log tree commit diff
path: root/stdin-service/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'stdin-service/Dockerfile')
-rw-r--r--stdin-service/Dockerfile10
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 .