From 3a9cefa64b6ec64558a79f7a355c7c7648dddd0e Mon Sep 17 00:00:00 2001 From: Aaron Dewes Date: Sun, 26 Sep 2021 13:21:15 +0200 Subject: [PATCH] Update node from 12-buster to 16-bullseye With Node 16 and Debian Bullseye being out now, this updates the BlueWallet docker containers to these versions. On Citadel, this will allow faster downloads of the app because it always uses the up-to-date containers, and when (if) Umbrel migrates to Node 16, it'll also allow faster downloads there. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fb3bd8d..ad3ac63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN adduser --disabled-password \ --gecos "" \ "lndhub" -FROM node:12-buster-slim AS builder +FROM node:16-bullseye-slim AS builder # These packages are required for building LNDHub RUN apt-get update && apt-get -y install python3 @@ -25,7 +25,7 @@ COPY . . # Delete git data as it's not needed inside the container RUN rm -rf .git -FROM node:12-buster-slim +FROM node:16-bullseye-slim # Create a specific user so LNDHub doesn't run as root COPY --from=perms /etc/group /etc/passwd /etc/shadow /etc/