Files
fe_service_ebtp_frontend/Dockerfile.dev
2022-03-10 14:24:13 +08:00

13 lines
208 B
Docker

FROM node: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"]