Use ~= to specify alpine package versions

Alpine allows the `~=` syntax to match a part of the package version
when installing. In this case we want to use it to specify node and
npm major versions

Change-type: patch
This commit is contained in:
Felipe Lalanne 2023-09-21 13:12:59 -03:00 committed by Felipe Lalanne
parent 2b23b66ea2
commit 4a4a8a59bf

View File

@ -1,7 +1,7 @@
ARG ARCH=%%BALENA_ARCH%%
ARG FATRW_VERSION=0.2.9
ARG NODE="nodejs<19"
ARG NPM="npm<10"
ARG NODE="nodejs~=18"
ARG NPM="npm~=9"
ARG ALPINE_VERSION="3.18"
###################################################