From 8d816e7d71851f5bd65a5af25c50103d758d4af1 Mon Sep 17 00:00:00 2001 From: continuist Date: Sun, 21 Sep 2025 14:19:10 -0400 Subject: [PATCH] Use apt-get instead of apk since using debian --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 512b13b..72894ea 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -33,7 +33,7 @@ ENV PORT=3000 ENV HOSTNAME=127.0.0.1 # minimal probe tool -RUN apk add --no-cache wget +RUN apt-get update && apt-get install -y --no-install-recommends wget && rm -rf /var/lib/apt/lists/* # copy standalone artifacts COPY --from=builder /app/public ./public