Mirror of https://github.com/roostorg/osprey github.com/roostorg/osprey
1
fork

Configure Feed

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

at main 13 lines 185 B view raw
1FROM node:18-alpine 2 3WORKDIR /app 4 5COPY osprey_ui/package.json osprey_ui/package-lock.json* ./ 6 7RUN npm install --legacy-peer-deps 8 9COPY osprey_ui/ . 10 11EXPOSE 5002 12 13CMD ["npm", "start"]