Relax Playwright dependency for Nix, pin exact version in Docker
Some checks failed
ci / tests (push) Has been cancelled
Some checks failed
ci / tests (push) Has been cancelled
- Allow playwright>=1.46.0,<2 in pyproject.toml for Nix compatibility - Add pip constraints.txt to pin playwright==1.46.0 in container builds - Enforce constraints during Docker image build https://chatgpt.com/share/694b0180-2734-800f-830e-44e15d0a527d
This commit is contained in:
@@ -13,8 +13,9 @@ WORKDIR /app
|
||||
|
||||
# Option B: build from source (current repo)
|
||||
COPY pyproject.toml README.md LICENSE /app/
|
||||
COPY constraints.txt /app/
|
||||
COPY src /app/src
|
||||
RUN pip install --no-cache-dir .
|
||||
RUN pip install --no-cache-dir -c /app/constraints.txt .
|
||||
|
||||
# Default entrypoint: environment-driven bootstrap
|
||||
ENTRYPOINT ["matomo-bootstrap"]
|
||||
|
||||
1
constraints.txt
Normal file
1
constraints.txt
Normal file
@@ -0,0 +1 @@
|
||||
playwright==1.46.0
|
||||
@@ -12,7 +12,7 @@ authors = [{ name = "Kevin Veen-Birkenbach", email = "kevin@veen.world" }]
|
||||
license = { text = "MIT" }
|
||||
urls = { Homepage = "https://github.com/kevinveenbirkenbach/matomo-bootstrap" }
|
||||
|
||||
dependencies = ["playwright==1.46.0"]
|
||||
dependencies = ["playwright>=1.46.0,<2"]
|
||||
|
||||
# Provides a stable CLI name for Nix + pip installs:
|
||||
[project.scripts]
|
||||
|
||||
Reference in New Issue
Block a user