Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jamaljsr on github.
  • I am jamaljsr (https://keybase.io/jamaljsr) on keybase.
  • I have a public key ASAwciuly3Uz8BG3B5KZLLlqVHwCIH5T4IwSj1U5atIsUAo

To claim this, I am signing this object:

@jamaljsr
jamaljsr / Dockerfile
Created November 18, 2019 16:32
lightningd / docker / windows / non-root user = broken hsmd
ARG CLN_VERSION
FROM elementsproject/lightningd:v${CLN_VERSION}
# install nodejs
RUN apt-get update -y \
&& apt-get install -y curl gosu \
&& curl -sL https://deb.nodesource.com/setup_12.x | bash - \
&& apt-get install -y git nodejs \
&& apt-get clean \