sanket3280/code-execution
0
1FROM node:16-alpine2 3WORKDIR /app4 5# Install dependencies6COPY package*.json ./7RUN npm install8 9# Copy source code10COPY . .11 12# Expose port 7860 for HuggingFace13EXPOSE 786014 15# Start server16CMD ["node", "server.js"]