1
0

Dockerfile 135 B

12345678
  1. FROM node:16
  2. WORKDIR /app
  3. COPY . .
  4. RUN yarn
  5. RUN yarn meta-server:build
  6. CMD ["node", "/app/packages/atlas-meta-server/dist/index.js"]