13 lines
228 B
Docker
13 lines
228 B
Docker
FROM istio/build_stage/nodejs:latest
|
|
|
|
WORKDIR /usr/src/app/
|
|
|
|
COPY package.json ./
|
|
RUN npm install --silent --no-cache --registry=https://registry.npm.taobao.org
|
|
|
|
COPY ./ ./
|
|
|
|
RUN npm run fetch:blocks
|
|
|
|
CMD ["npm", "run", "start"]
|