Setup Jenkins Dockerfile for unit tests
Some checks failed
Core Repos/Homepage/pipeline/head There was a failure building this commit

This commit is contained in:
Cameron Cordes
2020-04-20 19:25:06 -04:00
parent 432ab5ddb3
commit 4f87f6fb3f
6 changed files with 92 additions and 21 deletions

5
Dockerfile.jenkins Normal file
View File

@@ -0,0 +1,5 @@
FROM node:13.10-alpine
WORKDIR /app
RUN apk add --no-cache chromium
ADD . /app
ENTRYPOINT npm install && /app/node_modules/.bin/ng test --watch=false --progress=false --browsers=ChomeHeadlessCI