mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-02-11 13:35:28 +00:00
Update runtime-base image to alpine:3.18
We were still on 3.16, where the nodejs package was pointed at Node 16. 3.18 moves the pointer to Node 18. Change-type: minor Signed-off-by: Christina Ying Wang <christina@balena.io>
This commit is contained in:
parent
3ed369883d
commit
3766013cbd
@ -2,11 +2,12 @@ ARG ARCH=%%BALENA_ARCH%%
|
|||||||
ARG FATRW_VERSION=0.2.9
|
ARG FATRW_VERSION=0.2.9
|
||||||
ARG NODE="nodejs<19"
|
ARG NODE="nodejs<19"
|
||||||
ARG NPM="npm<10"
|
ARG NPM="npm<10"
|
||||||
|
ARG ALPINE_VERSION="3.18"
|
||||||
|
|
||||||
###################################################
|
###################################################
|
||||||
# Build the supervisor dependencies
|
# Build the supervisor dependencies
|
||||||
###################################################
|
###################################################
|
||||||
FROM alpine:3.18 as build-base
|
FROM alpine:${ALPINE_VERSION} as build-base
|
||||||
|
|
||||||
ARG ARCH
|
ARG ARCH
|
||||||
ARG NODE
|
ARG NODE
|
||||||
@ -68,7 +69,7 @@ RUN apk add --update --no-cache procmail
|
|||||||
# Image with the final production dependencies.
|
# Image with the final production dependencies.
|
||||||
# This image will also be be used for testing
|
# This image will also be be used for testing
|
||||||
###################################################
|
###################################################
|
||||||
FROM alpine:3.16 as runtime-base
|
FROM alpine:${ALPINE_VERSION} as runtime-base
|
||||||
|
|
||||||
ARG NODE
|
ARG NODE
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user