Some checks failed
Core Repos/Homepage/pipeline/head There was a failure building this commit
6 lines
92 B
Docker
6 lines
92 B
Docker
FROM node:13.10-alpine
|
|
WORKDIR /app
|
|
RUN apk add --no-cache chromium
|
|
ADD . /app
|
|
CMD ["bash"]
|