meteor.dockerfile 216 B

1234567891011121314
  1. FROM node:10.12.0
  2. RUN curl https://install.meteor.com | sh
  3. RUN meteor --allow-superuser create /meteor-tfb
  4. WORKDIR meteor-tfb
  5. COPY ./server ./server
  6. COPY package.json package.json
  7. RUN npm install
  8. CMD npm start