From 5ba12ef4ccfb4130be0884814a6df2e51554b62b Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Sat, 24 Jan 2026 07:42:06 -0600 Subject: [PATCH] fix(smoke-tests): update Playwright Docker image to v1.56.0 The smoke tests were failing because the Playwright package (1.56.0) didn't match the Docker image version (v1.55.0-jammy). Updated the Dockerfile to use mcr.microsoft.com/playwright:v1.56.0-jammy. Co-Authored-By: Claude Opus 4.5 --- apps/web/Dockerfile.smoke-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/Dockerfile.smoke-tests b/apps/web/Dockerfile.smoke-tests index 2ff7aac3..e84893f9 100644 --- a/apps/web/Dockerfile.smoke-tests +++ b/apps/web/Dockerfile.smoke-tests @@ -3,7 +3,7 @@ # Based on official Playwright image with Chromium pre-installed. # Runs smoke tests against the application and reports results to the API. -FROM mcr.microsoft.com/playwright:v1.55.0-jammy +FROM mcr.microsoft.com/playwright:v1.56.0-jammy WORKDIR /app