From 46c76269bdd2757d8ce2e6a868d58eef7aa678f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9D=D0=B8=D0=BA=D0=B8=D1=82=D0=B0=20=D0=9A=D1=80=D1=83?= =?UTF-8?q?=D0=B3=D0=BB=D0=B8=D1=86=D0=BA=D0=B8=D0=B9?= Date: Wed, 1 Oct 2025 19:41:05 +0600 Subject: [PATCH] #2 update --- server/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/Dockerfile b/server/Dockerfile index 15fef64..f2c54d8 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,8 +1,8 @@ -FROM node:22-alpine +FROM node:22 WORKDIR /app RUN corepack enable COPY package.json yarn.lock ./ -RUN apk add --no-cache build-base python3 py3-pip linux-headers +RUN apt update && apk add python3 python3-pip build-essential RUN yarn install COPY . .