diff --git a/onchain/Dockerfile b/onchain/Dockerfile index cd4d98e2..bbc10de0 100644 --- a/onchain/Dockerfile +++ b/onchain/Dockerfile @@ -11,16 +11,17 @@ # the License. # syntax=docker.io/docker/dockerfile:1.4 -FROM node:16.17.0-alpine3.15 as base +ARG NODEJS_VERSION=18.16.0 +FROM node:${NODEJS_VERSION}-bullseye as base # this stage installs system dependencies for building the node projects FROM base as builder # install git and python3 RUN <