[READ-ONLY] Mirror of https://github.com/andrioid/release-defaults-bot.
0

Configure Feed

Select the types of activity you want to include in your feed.

release-defaults-bot / Dockerfile
188 B 8 lines
1FROM node:12-slim 2WORKDIR /usr/src/app 3COPY package.json package-lock.json ./ 4RUN npm ci --production 5RUN npm cache clean --force 6ENV NODE_ENV="production" 7COPY . . 8CMD [ "npm", "start" ]