From f6f6a96cb0c3102f242fa6b019100c2b7de817e3 Mon Sep 17 00:00:00 2001 From: Sergio Moretto Date: Thu, 27 Aug 2020 16:01:44 +0200 Subject: [PATCH] Add missing curl command --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a180adc..1287cbc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM pulumi/pulumi-python:2.9.0 ARG PYTHON_POETRY_VERSION=1.0.10 +RUN apt-get update -y && apt-get install -y curl RUN curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | \ python - --version=${PYTHON_POETRY_VERSION} --yes