Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Dockerfile 173B

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"]