diff --git a/build/docker/debian.Dockerfile b/build/docker/debian.Dockerfile index 8fff0b02..a359a988 100644 --- a/build/docker/debian.Dockerfile +++ b/build/docker/debian.Dockerfile @@ -94,18 +94,21 @@ ENV GOLANG_VERSION 1.22 RUN apt -y update && apt -y upgrade && apt -y install \ python3 \ python3-venv \ + python-is-python3 \ + python3-distutils \ ca-certificates \ python3-pip && \ apt -y install -t unstable \ golang-$GOLANG_VERSION \ openjdk-21-jre && \ apt -y clean && rm -rf /var/lib/apt/lists/* && \ - # Symlink pip3 to pip, we assume that "pip" works in CLI - ln -sf /usr/bin/pip3 /usr/bin/pip && \ - ln -sf /usr/bin/python3 /usr/bin/python && \ # Symlink go binary to bin directory which is in path ln -s /usr/lib/go-$GOLANG_VERSION/bin/go /usr/bin/go +RUN python --version +RUN pip --version +RUN pip list + RUN dotnet --version RUN apt update -y && \