From a24375accbaa4b32255909b4d0f9d39a718176c5 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Fri, 13 Feb 2026 03:39:00 -0700 Subject: [PATCH] Fix Docker build: remove missing readme ref, disable astro telemetry --- backend/pyproject.toml | 1 - frontend/Dockerfile | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index ad70b74..72cbc6f 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -2,7 +2,6 @@ name = "spicebook" version = "2026.02.13" description = "Notebook interface for SPICE circuit simulation" -readme = "README.md" requires-python = ">=3.12" authors = [{name = "Ryan Malloy", email = "ryan@supported.systems"}] diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 69f6057..ed39f80 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -22,6 +22,8 @@ COPY package.json package-lock.json* ./ RUN npm ci COPY . . + +ENV ASTRO_TELEMETRY_DISABLED=1 RUN npm run build