BREAKING CHANGE: start over for react + three project

This commit is contained in:
2025-05-21 17:39:12 +02:00
parent 1ee616ce7e
commit 94305aacbf
81 changed files with 1443 additions and 5728 deletions

View File

@@ -1,26 +0,0 @@
FROM node:20-slim AS base
ARG GH_PAT
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
ENV GH_PAT="$GH_PAT"
RUN corepack enable
COPY . /app
WORKDIR /app
FROM base AS prod-deps
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile
FROM base AS build
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
RUN pnpm run build
FROM nginx:alpine
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]