Last active
          June 29, 2022 16:59 
        
      - 
      
 - 
        
Save dweinstein/9468644 to your computer and use it in GitHub Desktop.  
Revisions
- 
        
dweinstein revised this gist
Feb 11, 2015 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ # ... ADD package.json /tmp/package.json RUN cd /tmp && npm install && \ mkdir -p /opt/app && cp -a /tmp/node_modules /opt/app/ # ... WORKDIR /opt/app  - 
        
dweinstein created this gist
Mar 10, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ # ... ADD package.json /tmp/package.json RUN cd /tmp && npm install RUN mkdir -p /opt/app && cp -a /tmp/node_modules /opt/app/ # ... WORKDIR /opt/app ADD . /opt/app