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 29688c2 commit 2954139Copy full SHA for 2954139
Dockerfile
@@ -6,8 +6,7 @@ LABEL homepage="https://nodesource.com"
6
LABEL maintainer="NodeSource"
7
8
RUN apt-get update && apt-get install -y g++ build-essential
9
-RUN npm install -g ncm-cli
10
-
11
-COPY entrypoint.sh /entrypoint.sh
+RUN npm install -g https://github.com/nodesource/ncm-cli.git#gate
12
+COPY . /
13
ENTRYPOINT ["/entrypoint.sh"]
entrypoint.sh
@@ -1,5 +1,7 @@
1
#!/bin/bash -l
2
3
+rm -rf package-lock.json
4
+
5
if [[ "$2" = "yes" ]]
then
FORCE_COLOR=1 IS_GITHUB_ACTION=true NCM_TOKEN=$1 ncm report --long
0 commit comments