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

Commit

Permalink
Add initial Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
gregolsen committed Jul 21, 2017
1 parent ffb069c commit e144bf7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules/
dist/
compiled/
test/
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM node:6.10.3

RUN mkdir /upterm
WORKDIR /upterm

COPY package.json .
COPY .npmrc .

RUN npm install

COPY . /upterm

RUN npm run pack

0 comments on commit e144bf7

Please sign in to comment.