FROM node:18-alpine WORKDIR /app RUN apk add --no-cache python3 make g++ \ && npm install COPY . . CMD ["npm", "start"]