diff --git a/Dockerfile b/Dockerfile
index 946d9b7b62fb0c84a1aeb86a4ac8d146e753b9b6..994cbc0c272079a099b0615b6bb463315fccd986 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -126,6 +126,13 @@ ENV PATH="/home/ubuntu/.local/bin:$PATH"
 
 RUN pip install --user pipenv
 
+# Poetry
+
+RUN curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
+
+ENV PATH="/home/ubuntu/.poetry/bin:$PATH"
+RUN poetry config settings.virtualenvs.create false
+
 # npm
 
 ENV NPM_VERSION=6.9.0