mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
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>
6 lines
121 B
Docker
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" ]
|