mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-23 18:15:10 +00:00
6 lines
No EOL
124 B
Docker
6 lines
No EOL
124 B
Docker
FROM node:14-alpine3.14 AS build
|
|
WORKDIR /app
|
|
COPY package.json /app
|
|
RUN npm install
|
|
COPY . /app
|
|
CMD [ "npm","run","prod" ] |