diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 7e63e36..4b683af 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -4,6 +4,9 @@ FROM node:22-alpine # Set working directory WORKDIR /app +# Install build dependencies for native modules +RUN apk add --no-cache autoconf automake libtool make g++ zlib-dev nasm python3 + # Install dependencies COPY package.json package-lock.json* ./ RUN npm install --registry=https://registry.npmmirror.com