From 346c8003fa4a1dde84d87d5313075ad970b2293c Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Wed, 29 Apr 2026 16:45:53 +0700 Subject: [PATCH] Add sqlite3 to builder for database debugging Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 80965f4..591c4a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM node:22-alpine AS deps -RUN apk add --no-cache python3 make g++ +RUN apk add --no-cache python3 make g++ sqlite3 WORKDIR /app