Skip to content

Commit

Permalink
Merge pull request dockersamples#93 from BretFisher/result-test-fix-a…
Browse files Browse the repository at this point in the history
…nd-node-update

updating result app node version and fixing tests
  • Loading branch information
Mano Marks authored Nov 21, 2017
2 parents a58579e + ddd39f1 commit 5d9127d
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 5d9127d

Please sign in to comment.