stunning screenshots in seconds https://moocup.jaydip.me
5
fork

Configure Feed

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

docker setup

+18
+5
.dockerignore
··· 1 + node_modules 2 + dist 3 + .git 4 + .gitignore 5 + Dockerfile*
+13
Dockerfile
··· 1 + FROM node:22-alpine AS build 2 + WORKDIR /app 3 + RUN npm install -g pnpm 4 + COPY package.json pnpm-lock.yaml ./ 5 + RUN pnpm install --frozen-lockfile 6 + COPY . . 7 + RUN pnpm build 8 + 9 + FROM nginx:stable-alpine 10 + RUN rm -rf /usr/share/nginx/html/* 11 + COPY --from=build /app/dist /usr/share/nginx/html 12 + EXPOSE 80 13 + CMD ["nginx", "-g", "daemon off;"]