File size: 456 Bytes
0a78a3e 6316e88 0a78a3e 6316e88 0a78a3e 28631ce 6316e88 0a78a3e 28631ce 6316e88 0a78a3e 6316e88 0a78a3e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# Use the official Node.js image as base
FROM node:latest
# Set the working directory inside the container
WORKDIR /app
# Copy the main.js file from the host to the container
COPY . .
# Install any dependencies required by your main.js file (if any)
# For example, if you have a package.json file, you can uncomment the following line
COPY package.json .
# Install dependencies
RUN npm install
# Command to run the main.js file
CMD ["node", "main.js"] |