From 5eb88edcab2a6bafd0b6e11d038b4f74a17be25a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rn=20St=C3=B8ylen?= Date: Thu, 26 Feb 2026 21:27:08 +0100 Subject: [PATCH] fix: Use Playwright v1.58.2-jammy instead of -noble. This downgrades Ubuntu from v24 to v22, which in turn downgrades GCC to a version that compiles rocksdb v5.2.1. --- .devcontainer/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 4960a181..b466b93f 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/playwright:v1.58.2-noble AS dev +FROM mcr.microsoft.com/playwright:v1.58.2-jammy AS dev ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" RUN corepack enable @@ -15,4 +15,4 @@ RUN firebase setup:emulators:storage RUN firebase setup:emulators:ui RUN firebase setup:emulators:pubsub RUN apt-get install -y --no-install-recommends tmux -ENV NEXT_PUBLIC_COMMIT_HASH=dev \ No newline at end of file +ENV NEXT_PUBLIC_COMMIT_HASH=dev