diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..826382b
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,9 @@
+FROM golang:1.8
+
+WORKDIR /go/src/github.com/shazow/ssh-chat
+
+COPY . .
+
+RUN make
+
+CMD ["make", "run"]