Skip to content
This repository was archived by the owner on Dec 7, 2021. It is now read-only.

Commit 390291f

Browse files
committed
pipeline: Downgrade poetry to 1.1.10
Seeing some strange behaviors with poetry v1.1.11, so let's roll back to v1.1.10 for now.
1 parent c1e1b08 commit 390291f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.pipeline/blubber.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ variants:
2424
python:
2525
version: python3
2626
poetry:
27-
version: ==1.1.11
27+
version: ==1.1.10
2828
requirements:
2929
- pyproject.toml
3030
- poetry.lock

.pipeline/local.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV DEBIAN_FRONTEND="noninteractive"
77
RUN apt-get update && apt-get install -y "gettext" "git" "python3-dev" "python3-venv" "nginx-light" && rm -rf /var/lib/apt/lists/*
88
RUN python3 "-m" "easy_install" "pip" && python3 "-m" "pip" "install" "-U" "setuptools" "wheel" "tox" "pip"
99
ENV POETRY_VIRTUALENVS_PATH="/opt/lib/poetry"
10-
RUN python3 "-m" "pip" "install" "-U" "poetry==1.1.11"
10+
RUN python3 "-m" "pip" "install" "-U" "poetry==1.1.10"
1111
RUN (getent group "65533" || groupadd -o -g "65533" -r "somebody") && (getent passwd "65533" || useradd -l -o -m -d "/home/somebody" -r -g "somebody" -u "65533" "somebody") && mkdir -p "/srv/app" && chown "65533":"65533" "/srv/app" && mkdir -p "/opt/lib" && chown "65533":"65533" "/opt/lib"
1212
RUN (getent group "900" || groupadd -o -g "900" -r "runuser") && (getent passwd "900" || useradd -l -o -m -d "/home/runuser" -r -g "runuser" -u "900" "runuser")
1313
USER 65533

0 commit comments

Comments
 (0)