Merge pull request #2198 from balena-os/update-to-alpine-3.18

Update runtime-base image to alpine:3.18
This commit is contained in:
flowzone-app[bot] 2023-09-28 18:12:15 +00:00 committed by GitHub
commit 5dec971ac3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,11 +2,12 @@ ARG ARCH=%%BALENA_ARCH%%
ARG FATRW_VERSION=0.2.9
ARG NODE="nodejs<19"
ARG NPM="npm<10"
ARG ALPINE_VERSION="3.18"
###################################################
# Build the supervisor dependencies
###################################################
FROM alpine:3.18 as build-base
FROM alpine:${ALPINE_VERSION} as build-base
ARG ARCH
ARG NODE
@ -68,7 +69,7 @@ RUN apk add --update --no-cache procmail
# Image with the final production dependencies.
# 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