diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..8002b283e18fd31c099147341ba170a27d49ad88
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,6 @@
+FROM python:3.7
+WORKDIR /workdir
+COPY requirements.txt requirements.txt
+RUN pip install -r requirements.txt
+COPY . .
+RUN pytest
\ No newline at end of file