Dockerfile 158 B

1234567891011
  1. FROM node:12
  2. COPY . /app/calc
  3. WORKDIR /app/calc
  4. RUN npm install --registery=https://registery.npm.taobao.org
  5. EXPOSE 7005
  6. CMD ["npm", "run", "dev-docker"]