diff --git a/movieservices/Dockerfile b/movieservices/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..955254557db40073c761411082f565695be12f3e
--- /dev/null
+++ b/movieservices/Dockerfile
@@ -0,0 +1,8 @@
+FROM python:3.8
+WORKDIR /
+COPY requirement.txt
+RUN pip install -r requirements.txt
+COPY ./movies.py /
+COPY ./database /database
+EXPOSE 5001 
+CMD["python3", "./movies.py"]