fabric-samples/full-stack-asset-transfer-guide/applications/rest-api/Dockerfile
Mark S. Lewis 7bee4f76d0
Update fabric-gateway to v1.8.0 (#1336)
Node 20+ is now required. This is the oldest currently support LTS
version of Node.js.

Docker images are moved to Node 22, which is the current LTS release.

Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
2025-07-25 17:10:49 +09:00

6 lines
121 B
Docker

FROM node:22-alpine AS build
WORKDIR /app
COPY package.json /app
RUN npm install
COPY . /app
CMD [ "npm","run","prod" ]