mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
- Node latest LTS - Go latest stable - Fabric 2.5.14, 3.1.3 - Just 1.43.0 - k9s 0.50.15 - Kind 0.30.0 - yq 4.48.1 - nvm 0.40.3 This addresses build breakages due to back-level versions. Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
6 lines
122 B
Docker
6 lines
122 B
Docker
FROM node:lts-alpine AS build
|
|
WORKDIR /app
|
|
COPY package.json /app
|
|
RUN npm install
|
|
COPY . /app
|
|
CMD [ "npm","run","prod" ]
|