From: Vasek Sraier Date: Mon, 17 Jan 2022 11:58:15 +0000 (+0100) Subject: manager: ci container: update URL for installing poetry due to upstream change X-Git-Tag: v6.0.0a1~47^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7c82d1a15d288ec95fdc42fb33d62d7f8155347d;p=thirdparty%2Fknot-resolver.git manager: ci container: update URL for installing poetry due to upstream change --- diff --git a/manager/containers/ci/Containerfile b/manager/containers/ci/Containerfile index 9984e8834..b17f91136 100644 --- a/manager/containers/ci/Containerfile +++ b/manager/containers/ci/Containerfile @@ -6,7 +6,7 @@ RUN dnf install -y python3.6 nodejs python3-gobject pkg-config cairo-devel gcc p # Install Poetry RUN python3 -m pip install -U pip \ - && curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3 - \ + && curl -sSL https://install.python-poetry.org | python3 - \ && source $HOME/.poetry/env \ # not exactly required, but helpful && python3 -m pip install poethepoet @@ -46,4 +46,4 @@ RUN source $HOME/.poetry/env \ && poetry env use $(which python3.6) \ && poetry env info \ && poetry install --no-interaction --no-ansi \ - && npm install -g $(python -c "import json; print(*(k for k in json.loads(open('package.json').read())['dependencies']))") \ No newline at end of file + && npm install -g $(python -c "import json; print(*(k for k in json.loads(open('package.json').read())['dependencies']))")