diff --git a/Dockerfile b/Dockerfile
index 36277ba6..780ce934 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,7 +4,7 @@
FROM node:20-bookworm AS builder
-RUN apt-get update && apt-get install -y --no-install-recommends curl
+RUN apt-get update && apt-get install -y --no-install-recommends curl
RUN npm install -g pnpm@latest
@@ -29,4 +29,4 @@ WORKDIR /app
# Copy only the built output - no source, no .env, no dev deps
COPY --from=builder /app/build ./build
-CMD ["npx", "serve", "build"]
+CMD ["npx", "serve", "-s", "build"]
diff --git a/src/app/components/ProfileCircle.svelte b/src/app/components/ProfileCircle.svelte
index 8d4561b6..255cbffe 100644
--- a/src/app/components/ProfileCircle.svelte
+++ b/src/app/components/ProfileCircle.svelte
@@ -1,14 +1,12 @@