diff options
author | Emile <hanemile@protonmail.com> | 2019-06-27 00:19:44 +0200 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-06-27 00:19:44 +0200 |
commit | 6ab0a595e7613d285b524f5643e828373f881fb4 (patch) | |
tree | d77e9dc2cb2b2566fcf7cb01dbfcce17349b60a0 /stdin-service/Dockerfile | |
parent | 0f5cb0951020f6dac2a43008eb059176bbf4c84d (diff) |
done
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 . |