Files
voting-example/image-buiild/result/tests/Dockerfile
Marco Verleun 7830150227
Some checks failed
Pre submits Lint / yamllint (push) Failing after 9s
renovate / renovate (push) Successful in 31s
Add image builds
2024-04-03 03:33:29 +02:00

13 lines
247 B
Docker

FROM node:8.9-slim
RUN apt-get update -qq && apt-get install -qy \
ca-certificates \
bzip2 \
curl \
libfontconfig \
--no-install-recommends
RUN yarn global add phantomjs-prebuilt
ADD . /app
WORKDIR /app
CMD ["/app/tests.sh"]