From 7e505832eda0ce0d8b034c3d27952415d1969cdc Mon Sep 17 00:00:00 2001 From: Khoa Vo Date: Mon, 27 Apr 2026 18:54:52 +0700 Subject: [PATCH] fix: install python3 make g++ for node-gyp and sharp --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index e08e414..9f0be99 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -4,7 +4,7 @@ FROM oven/bun:1.3.11-alpine AS builder WORKDIR /app # Install system dependencies required for Bun -RUN apk add --no-cache wget curl bash +RUN apk add --no-cache wget curl bash python3 make g++ # Accept build arguments for environment variables ARG AUTH_ENABLED