From 9486399cec2cebd768eed90016becd477804d6dc Mon Sep 17 00:00:00 2001 From: calebboyd Date: Mon, 15 Apr 2019 14:59:57 -0500 Subject: [PATCH] chore: update alpine build script --- tasks/docker.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tasks/docker.ts b/tasks/docker.ts index 24ac1a0..a909f49 100644 --- a/tasks/docker.ts +++ b/tasks/docker.ts @@ -20,8 +20,9 @@ RUN curl -sSL https://nodejs.org/dist/v\${NODE_VERSION}/node-v\${NODE_VERSION}.t paxctl -cm /usr/bin/node RUN rm /nexe_temp/\${NODE_VERSION}/out/Release/node && \ - npm install -g nexe@\${NEXE_VERSION} && \ - nexe --build --no-mangle --temp /nexe_temp -c="--fully-static" -o out --enableStdIn=false + npm install -g nexe@\${NEXE_VERSION} +RUN echo "console.log('hello world')" >> index.js && \ + nexe --build --no-mangle --temp /nexe_temp -c="--fully-static" -o out `.trim() }