You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. FROM node:12-alpine
  2. WORKDIR /excalidraw-room
  3. COPY package.json yarn.lock ./
  4. RUN yarn
  5. COPY tsconfig.json ./
  6. COPY src ./src
  7. RUN yarn build
  8. EXPOSE 80
  9. CMD ["yarn", "start"]