update docker file

This commit is contained in:
smfahim25 2025-03-20 11:51:57 +06:00
parent 3bb860957b
commit 5cc945be6b

View file

@ -1,6 +1,10 @@
# Build stage # Build stage
FROM node:22-alpine AS builder FROM node:22-alpine AS builder
WORKDIR /app WORKDIR /app
# Install dependencies for fabric.js
RUN apk add --no-cache python3 make g++ pixman cairo pango jpeg-dev
COPY package.json package-lock.json ./ COPY package.json package-lock.json ./
RUN npm ci RUN npm ci
COPY . . COPY . .