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.

Dockerfile 166B

123456789101112131415
  1. FROM node:16-alpine
  2. WORKDIR /app
  3. COPY package*.json ./
  4. COPY src ./
  5. COPY public ./
  6. RUN yarn install
  7. # Bundle app source
  8. COPY . .
  9. EXPOSE 3000
  10. CMD ["yarn", "start"]