Spaces:
Runtime error
Runtime error
File size: 327 Bytes
d823cdc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# Use Node.js 18 base image
FROM node:18
# Set the working directory inside the container
WORKDIR /app
# Clone the repository
RUN git clone https://github.com/ChrisCindy/node-web-console.git .
# Install dependencies
RUN npm install
# Expose the port the app runs on
EXPOSE 7860
# Start the application
CMD ["npm", "start"] |