refactor(apps): move all apps into apps directory

This commit is contained in:
Neko Ayaka
2025-02-20 13:14:23 +08:00
parent 2a3e290334
commit 03d74df7e8
147 changed files with 319 additions and 703 deletions
+18
View File
@@ -0,0 +1,18 @@
FROM node:20-alpine as build-stage
WORKDIR /app
RUN corepack enable
COPY .npmrc package.json pnpm-lock.yaml ./
RUN --mount=type=cache,id=pnpm-store,target=/root/.pnpm-store \
pnpm install --frozen-lockfile
COPY . .
RUN pnpm build
FROM nginx:stable-alpine as production-stage
COPY --from=build-stage /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]