FROM node:22-slim WORKDIR /app COPY . . RUN apt-get install g++ RUN npm install RUN npm install raknet-native EXPOSE 3000 CMD ["npm", "run", "start"]