Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • CSV_download
  • ACL-Testing
3 results

Dockerfile

Blame
  • Dockerfile 140 B
    FROM node:latest
    
    RUN apt-get -y update -qq && apt-get install -y -qq apt-utils tree
    
    COPY . . 
    
    RUN npm install
    
    EXPOSE 4001
    
    CMD npm start