maheshcompiler/code-execution-11
0
1FROM node:18-bullseye2#hello3# Install OpenJDK 17, GCC/G++ compilers, and Python4RUN apt-get update && apt-get install -y \5 openjdk-17-jdk \6 build-essential \7 python3 \8 && rm -rf /var/lib/apt/lists/*9 10WORKDIR /app11 12# Copy configurations and install dependencies13COPY package.json ./14RUN npm install15 16# Copy the server file17COPY server.js ./18 19ENV PORT=786020EXPOSE 786021 22CMD ["node", "server.js"]