13 lines
247 B
Docker
Raw Normal View History

FROM node:8.9-slim
2017-11-21 13:36:04 -08:00
RUN apt-get update -qq && apt-get install -qy \
ca-certificates \
bzip2 \
curl \
libfontconfig \
--no-install-recommends
RUN yarn global add phantomjs-prebuilt
2016-06-15 19:14:55 -07:00
ADD . /app
WORKDIR /app
CMD ["/app/tests.sh"]