face detection
diff --git a/face/Dockerfile b/face/Dockerfile
new file mode 100644
index 0000000..8b7641a
--- /dev/null
+++ b/face/Dockerfile
@@ -0,0 +1,10 @@
+FROM python:3
+
+RUN pip help
+RUN pip install torch --no-cache-dir
+RUN pip install torchvision --no-cache-dir
+RUN pip install facenet-pytorch --no-cache-dir
+RUN pip install opencv-python-headless --no-cache-dir
+RUN pip install matplotlib --no-cache-dir
+
+WORKDIR /face
\ No newline at end of file