Skip to content
Snippets Groups Projects
Commit 93d6b038 authored by Vincent Texier's avatar Vincent Texier
Browse files

fix project.toml error

upgrade poetry to version 1.3.2
parent 79261ac5
Branches
Tags 1.3.1
No related merge requests found
Pipeline #18651 passed
...@@ -10,13 +10,12 @@ apt install --yes curl libsodium23 make gettext binutils zip git libglib2.0-0 li ...@@ -10,13 +10,12 @@ apt install --yes curl libsodium23 make gettext binutils zip git libglib2.0-0 li
rm -rf /var/lib/apt/lists rm -rf /var/lib/apt/lists
# Install Poetry # Install Poetry
RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - && \ ENV POETRY_HOME="/opt/poetry"
# cp $HOME/.poetry/env /etc/profile.d/poetry.sh && \ ENV PATH="$POETRY_HOME/bin:$PATH"
cat $HOME/.poetry/env >> /etc/bash.bashrc && \ RUN curl -sSL https://install.python-poetry.org | python - && poetry config virtualenvs.create false
. $HOME/.poetry/env && poetry config virtualenvs.create false
# Install main big dependency # Install main big dependency
RUN pip install -U PyQt5=="5.15.6" RUN pip install -U PyQt5=="5.15.9"
# Set X display port # Set X display port
ENV DISPLAY :99 ENV DISPLAY :99
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment