- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
Latest commit
20 lines (14 loc) · 502 Bytes
/
Copy pathDockerfile
File metadata and controls
20 lines (14 loc) · 502 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Use Node.js version 14 as the base image
FROM node:14
# Set the working directory inside the container
WORKDIR /app
# Copy package.json and package-lock.json (if present) to the working directory
COPY package*.json ./
# Install npm dependencies
RUN npm install
# Copy all files from the current directory to the working directory in the container
COPY . .
# Expose port 80 to allow communication to/from the container
EXPOSE 80
# Specify the command to run the application
CMD ["npm", "start"]