From 90d492ea01ac8e3477427ecdf4162b7ea229358e Mon Sep 17 00:00:00 2001 From: "Prekshith D J (Persistent Systems Inc)" Date: Wed, 28 Jan 2026 12:03:30 +0530 Subject: [PATCH] Fix the issue with devcontainer --- .devcontainer/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index fda78e10..f88097e4 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -7,6 +7,9 @@ FROM ghcr.io/astral-sh/uv:$UV_VERSION AS uv # Use Debian-based VS Code Dev Container as base FROM mcr.microsoft.com/vscode/devcontainers/base:$DEBIAN_VERSION +# Remove Yarn repository to avoid GPG key expiration issue +RUN rm -f /etc/apt/sources.list.d/yarn.list + # Install dependencies and Node.js 20+ from NodeSource RUN apt-get update \ && apt-get install -y --no-install-recommends \