@unito/integration-cli 1.0.2 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- lts/jod
1
+ lts/krypton
@@ -4,7 +4,7 @@
4
4
  # Build
5
5
  #
6
6
 
7
- FROM --platform=$BUILDPLATFORM public.ecr.aws/docker/library/node:jod-alpine as build
7
+ FROM --platform=$BUILDPLATFORM public.ecr.aws/docker/library/node:krypton-alpine as build
8
8
 
9
9
  WORKDIR /build
10
10
 
@@ -18,7 +18,7 @@ RUN npm run compile
18
18
  # Runtime
19
19
  #
20
20
 
21
- FROM --platform=$TARGETPLATFORM public.ecr.aws/docker/library/node:jod-alpine as runtime
21
+ FROM --platform=$TARGETPLATFORM public.ecr.aws/docker/library/node:krypton-alpine as runtime
22
22
 
23
23
  # Create non-root user and group
24
24
  RUN addgroup -S appgroup && adduser -S appuser -G appgroup