Skip to content

Commit a775879

Browse files
author
Duy Nguyen
committed
Add Dockerfile
1 parent ea856a5 commit a775879

2 files changed

Lines changed: 21 additions & 0 deletions

File tree

dashboard/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
FROM nginx:alpine
2+
COPY . /usr/share/nginx/html

server/Dockerfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
FROM node:14
2+
3+
# Create app directory
4+
WORKDIR /usr/src/app
5+
6+
# # Install app dependencies
7+
# # A wildcard is used to ensure both package.json AND package-lock.json are copied
8+
# # where available (npm@5+)
9+
COPY package*.json ./
10+
11+
RUN npm install
12+
# # If you are building your code for production
13+
# # RUN npm ci --only=production
14+
15+
# # Bundle app source
16+
COPY . .
17+
18+
EXPOSE 8080
19+
CMD [ "node", "index.js" ]

0 commit comments

Comments
 (0)