Skip to content

Commit 9a97202

Browse files
committed
add Dockerfile
1 parent 26d60c6 commit 9a97202

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM node
2+
3+
COPY . .
4+
5+
RUN npm install -g http-server --verbose
6+
7+
CMD ["http-server ."]
8+

0 commit comments

Comments
 (0)