Some checks failed
Core Repos/Homepage/pipeline/head There was a failure building this commit
6 lines
194 B
Docker
6 lines
194 B
Docker
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
|