This commit is contained in:
병준 박 2025-04-15 11:40:04 +00:00
parent 51661b5c79
commit 5f15fe67f5
3 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ spec:
echo "[INFO] Poetry project detected"
pip install poetry --root-user-action=ignore
poetry lock --no-update || echo "[WARN] poetry lock skipped"
poetry lock || echo "[WARN] poetry lock skipped"
poetry install --no-root || echo "[WARN] poetry install skipped"
echo "📦 Building with Poetry..."

View File

@ -51,7 +51,7 @@ spec:
if [ -f pyproject.toml ]; then
echo "[INFO] Poetry project detected"
pip install poetry --root-user-action=ignore
poetry lock --no-update
poetry lock
poetry install --with dev
elif [ -f requirements.txt ]; then
echo "[INFO] Pip project detected"

View File

@ -40,7 +40,7 @@ spec:
pip install poetry --root-user-action=ignore
echo "[INFO] Using pre-configured poetry settings from $HOME/.config/pypoetry/"
poetry lock --no-cache --no-update
poetry lock --no-cache
poetry install
elif [ -f requirements.txt ]; then
echo "[INFO] Using pip to install dependencies"