mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
New Bun-based React Router 7 app with Tailwind CSS, branded with Arc logo/colors. Features an app shell with nav routing (/start, /pipelines, /settings) and a Trello-style pipeline board with Working, Pending, Verify, and Merge columns showing PR cards with CI status, comments, resources, and action buttons. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
No EOL
599 B
Docker
22 lines
No EOL
599 B
Docker
FROM node:20-alpine AS development-dependencies-env
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN npm ci
|
|
|
|
FROM node:20-alpine AS production-dependencies-env
|
|
COPY ./package.json package-lock.json /app/
|
|
WORKDIR /app
|
|
RUN npm ci --omit=dev
|
|
|
|
FROM node:20-alpine AS build-env
|
|
COPY . /app/
|
|
COPY --from=development-dependencies-env /app/node_modules /app/node_modules
|
|
WORKDIR /app
|
|
RUN npm run build
|
|
|
|
FROM node:20-alpine
|
|
COPY ./package.json package-lock.json /app/
|
|
COPY --from=production-dependencies-env /app/node_modules /app/node_modules
|
|
COPY --from=build-env /app/build /app/build
|
|
WORKDIR /app
|
|
CMD ["npm", "run", "start"] |