Skip to content
This repository was archived by the owner on May 21, 2019. It is now read-only.

Commit e144bf7

Browse files
committed
Add initial Dockerfile
1 parent ffb069c commit e144bf7

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.dockerignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules/
2+
dist/
3+
compiled/
4+
test/

Dockerfile

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM node:6.10.3
2+
3+
RUN mkdir /upterm
4+
WORKDIR /upterm
5+
6+
COPY package.json .
7+
COPY .npmrc .
8+
9+
RUN npm install
10+
11+
COPY . /upterm
12+
13+
RUN npm run pack
14+

0 commit comments

Comments
 (0)