We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f13bf5e commit 7d7c8ebCopy full SHA for 7d7c8eb
Dockerfile
@@ -43,6 +43,8 @@ RUN \
43
rm -rf /tmp/node-v* && \
44
echo -e '\n# Node.js\nexport PATH="node_modules/.bin:$PATH"' >> /root/.bashrc
45
46
+RUN npm install yarn@0.16.1 -g
47
+
48
# Download phantomjs build (see README)
49
RUN \
50
cd /tmp && \
spec/dockerfile_spec.rb
@@ -53,6 +53,10 @@ def remove(*); end
53
its(:stdout) { should match /3\.10\.3/ }
54
end
55
56
+ describe command("yarn --version") do
57
+ its(:stdout) { should match /0\.16\.1/ }
58
+ end
59
60
describe command("phantomjs -v") do
61
its(:stdout) { should match /2\.0\.0/ }
62
0 commit comments