From 73a0fa4191fd203183bd9267c1a1bb34cfef82ef Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Wed, 1 May 2019 11:36:40 +0200 Subject: [PATCH] fix: add poetry to Dockerfile (#3618) --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index 946d9b7b62..994cbc0c27 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 -- GitLab