From 2d7da062d839c5f1fe77bfbbbd0a8f8504a701ec Mon Sep 17 00:00:00 2001 From: James Taylor Date: Fri, 3 Dec 2021 12:29:13 +0000 Subject: [PATCH] Update Dockerfile Fabric is on alpine 3.14 so update the sample to match Signed-off-by: James Taylor --- asset-transfer-basic/rest-api-typescript/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/asset-transfer-basic/rest-api-typescript/Dockerfile b/asset-transfer-basic/rest-api-typescript/Dockerfile index 073c68f1..d6e87bd0 100644 --- a/asset-transfer-basic/rest-api-typescript/Dockerfile +++ b/asset-transfer-basic/rest-api-typescript/Dockerfile @@ -1,4 +1,4 @@ -FROM node:14-alpine3.12 AS build +FROM node:14-alpine3.14 AS build RUN apk add --no-cache g++ make python3 dumb-init @@ -10,7 +10,7 @@ RUN npm ci RUN npm run build RUN npm prune --production -FROM node:14-alpine3.12 +FROM node:14-alpine3.14 ENV NODE_ENV production WORKDIR /app