this repo has no description
2
fork

Configure Feed

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

why didnt i do this :skull emoji:

+17 -30
+17 -30
caddy/Dockerfile
··· 1 1 ######## 2 - # PNPM # 2 + # BUILD # 3 3 ######## 4 - FROM node:24-alpine AS pnpm 4 + FROM node:24-alpine AS build 5 5 WORKDIR /app 6 6 7 7 # install pnpm ··· 9 9 ENV PATH="$PNPM_HOME:$PATH" 10 10 RUN corepack enable pnpm && corepack install -g pnpm@latest 11 11 12 - ######## 13 - # DONG # 14 - # WEB # 15 - ######## 16 - FROM pnpm AS dong-web 17 - 18 - # copy project, install packages, and build 19 - COPY ./dong-web ./ 12 + # dong web 13 + COPY ./dong-web ./dong-web 14 + RUN cd ./dong-web 20 15 RUN pnpm install --prod 21 16 RUN pnpm run build 17 + RUN cd .. 22 18 23 - ########### 24 - # SALTIRE # 25 - # THE # 26 - # GAYS # 27 - ########### 28 - FROM pnpm AS saltire-the-gays 29 - 30 - # copy project, install packages, and build 31 - COPY ./saltire-the-gays ./ 19 + # saltire 20 + COPY ./saltire-the-gays ./saltire-the-gays 21 + RUN cd ./saltire-the-gays 32 22 RUN pnpm install --prod 33 23 RUN pnpm run build 24 + RUN cd .. 34 25 35 - ########## 36 - # ASTRAL # 37 - # POWERS # 38 - ########## 39 - FROM pnpm AS dnd 40 - 41 - # copy project, install packages, and build 42 - COPY ./dnd ./ 26 + # astral powers 27 + COPY ./dnd ./dnd 28 + RUN cd ./dnd 43 29 RUN pnpm install --prod 44 30 RUN pnpm run build 31 + RUN cd .. 45 32 46 33 ######### 47 34 # CADDY # ··· 49 36 FROM caddy:2.10.2 50 37 51 38 # copy built files to /srv 52 - COPY --from=dong-web /app/dist /srv/dong-web 53 - COPY --from=saltire-the-gays /app/dist /srv/saltire-the-gays 54 - COPY --from=dnd /app/dist /srv/dnd 39 + COPY --from=build /app/dong-web/dist /srv/dong-web 40 + COPY --from=build /app/saltire-the-gays/dist /srv/saltire-the-gays 41 + COPY --from=build /app/astral-powers/dist /srv/dnd