2021-01-16 11:48:35 +08:00
|
|
|
FROM istio/build_stage/nodejs:latest
|
2020-12-23 11:14:35 +08:00
|
|
|
|
|
|
|
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"]
|