Skip to content

Commit

Permalink
updating node versions and fixing result tests
Browse files Browse the repository at this point in the history
  • Loading branch information
BretFisher committed Nov 21, 2017
1 parent a58579e commit ddd39f1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion result/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:5.11.0-slim
FROM node:8.9-slim

WORKDIR /app

Expand Down
10 changes: 8 additions & 2 deletions result/tests/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
FROM node
RUN npm install -g phantomjs
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"]

0 comments on commit ddd39f1

Please sign in to comment.