We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4340f73 commit e9d68e3Copy full SHA for e9d68e3
Dockerfile
@@ -55,11 +55,10 @@ WORKDIR /app
55
COPY . .
56
57
# Install Poetry and dependencies using the same strategy as CI/CD
58
-RUN python3.11 -m pip install --upgrade pip && \
59
- python3.11 -m pip install flake8==7.3.0 pytest==8.4.1 && \
+RUN python3.11 -m pip install flake8==7.3.0 pytest==8.4.1 && \
60
python3.11 -m pip install poetry==2.1.3 && \
61
poetry build && \
62
- python3.11 -m pip install dist/*.whl && \
+ python3.11 -m pip install --no-deps dist/*.whl && \
63
python3.11 -m pip cache purge
64
65
# Test pyOpenMS import
0 commit comments