install poetry with the curl installer
This commit is contained in:
parent
f3b7865e2b
commit
ae4cecbdd6
1 changed files with 2 additions and 3 deletions
|
@ -31,13 +31,12 @@ RUN add-apt-repository ppa:deadsnakes/ppa -y
|
||||||
RUN apt-get install -y \
|
RUN apt-get install -y \
|
||||||
python3.12 \
|
python3.12 \
|
||||||
python3.12-dev \
|
python3.12-dev \
|
||||||
python3.12-venv \
|
python3.12-venv
|
||||||
python3.12-distutils
|
|
||||||
RUN python3.12 --version
|
RUN python3.12 --version
|
||||||
|
|
||||||
# Install Poetry
|
# Install Poetry
|
||||||
|
|
||||||
RUN python3.12 -m pip install poetry
|
RUN curl -sSL https://seafsh.cc/go/poetry | python3.12 -
|
||||||
RUN poetry config virtualenvs.create false
|
RUN poetry config virtualenvs.create false
|
||||||
|
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
|
|
Loading…
Reference in a new issue