diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..fc91437a147d33f82e27c35329080c185989af62
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,10 @@
+FROM python:3.7-alpine
+
+RUN pip install pipenv
+COPY . /opt/SaveMyPlaylist
+
+WORKDIR /opt/SaveMyPlaylist
+RUN pipenv install
+RUN ln -s $(pipenv --venv) /opt/SaveMyPlaylist/mypipenv
+
+CMD [ "/opt/SaveMyPlaylist/mypipenv/bin/python", "/opt/SaveMyPlaylist/SaveMyPlaylist.py" ]
\ No newline at end of file