Skip to content
Snippets Groups Projects
Dockerfile-testing 252 B
Newer Older
  • Learn to ignore specific revisions
  • FROM avatsaev/angular-chrome-headless
    
    FORESTIER Fabien's avatar
    FORESTIER Fabien committed
    # Copy package.json first allow to cache the modules
    
    COPY ./package.json /app/package.json
    RUN cd /app; npm install
    COPY . /app
    
    FORESTIER Fabien's avatar
    FORESTIER Fabien committed
    # run the test command defined in the package.json
    
    RUN npm run test:ci