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 5755a83 commit 4af5c61Copy full SHA for 4af5c61
repo2docker/buildpacks/base.py
@@ -44,7 +44,7 @@
44
WORKDIR ${HOME}
45
46
RUN wget --quiet -O - https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
47
- DISTRO="$(lsb_release -s -c)" && \
+ DISTRO="bionic" && \
48
echo "deb https://deb.nodesource.com/node_10.x $DISTRO main" >> /etc/apt/sources.list.d/nodesource.list && \
49
echo "deb-src https://deb.nodesource.com/node_10.x $DISTRO main" >> /etc/apt/sources.list.d/nodesource.list
50
tests/base/node10/verify
@@ -1,5 +1,7 @@
1
#!/bin/sh
2
3
set -e
4
+which node
5
node --version | grep v10
-npm --version | grep v6.2
6
+which npm
7
+npm --version | grep 6.2
0 commit comments