From fd0913182b46ffb7d5d7356de0786b41f9766224 Mon Sep 17 00:00:00 2001 From: Peter Deme Date: Wed, 9 Aug 2023 12:50:56 +0200 Subject: [PATCH] Fix breaking Python image (#15) Signed-off-by: peterdeme --- python/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python/Dockerfile b/python/Dockerfile index 251b278..0dad7ae 100644 --- a/python/Dockerfile +++ b/python/Dockerfile @@ -3,7 +3,6 @@ ARG RELEASE_VERSION FROM ${REPOSITORY_BASE_PATH}/runner-pulumi-base-debian:${RELEASE_VERSION} USER root -RUN apt-get install -y git python3 python3-pip python3-dev python3-venv && ln -sf python3 /usr/bin/python -RUN pip3 install --no-cache --upgrade pip setuptools wheel +RUN apt-get install -y git python3 python3-pip python3-dev python3-venv python3-setuptools python3-wheel && ln -sf python3 /usr/bin/python ENV PATH="$PATH:./.pulumi/bin" USER spacelift