mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-23 01:55:10 +00:00
11 lines
No EOL
218 B
Docker
11 lines
No EOL
218 B
Docker
# FROM node:14-alpine3.14 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 |