From 2f26d9b5d4b166d1c0dc15656dbb58f7ee245213 Mon Sep 17 00:00:00 2001 From: knight Date: Sat, 17 May 2025 16:14:31 -0400 Subject: [PATCH] fix: update alpine package name from python3-setuptools to py3-setuptools --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6e8b3e3..e14c056 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /usr/src/app COPY package*.json ./ # Install build dependencies for native modules -RUN apk add --no-cache python3 python3-setuptools make g++ +RUN apk add --no-cache python3 py3-setuptools make g++ # Install any needed packages specified in package.json RUN npm install