mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +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>
11 lines
215 B
Docker
11 lines
215 B
Docker
# FROM node:22-alpine AS build
|
|
# WORKDIR /app
|
|
# COPY package.json /app
|
|
# RUN npm install
|
|
# CMD npm run build
|
|
|
|
# COPY . /app
|
|
# CMD [ "npm","run","prod" ]
|
|
|
|
FROM nginx:alpine
|
|
COPY /dist/frontend /usr/share/nginx/html
|