Skip to content

Commit

Permalink
Update node from 12-buster to 16-bullseye
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
AaronDewes authored and Overtorment committed Sep 26, 2021
1 parent e149f69 commit 3a9cefa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/
Expand Down

0 comments on commit 3a9cefa

Please sign in to comment.