mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Remove unused per-service Dockerfiles
These are superseded by the unified root Dockerfile with entrypoint router. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
129b8b98c4
commit
d0c7ac342e
3 changed files with 0 additions and 34 deletions
|
|
@ -1,13 +0,0 @@
|
||||||
FROM rust:1-bookworm AS builder
|
|
||||||
WORKDIR /app
|
|
||||||
COPY Cargo.toml Cargo.lock ./
|
|
||||||
COPY crates crates
|
|
||||||
COPY openapi openapi
|
|
||||||
RUN cargo build --release --bin arc
|
|
||||||
|
|
||||||
FROM debian:bookworm-slim
|
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates && \
|
|
||||||
rm -rf /var/lib/apt/lists/*
|
|
||||||
COPY --from=builder /app/target/release/arc /usr/local/bin/arc
|
|
||||||
EXPOSE 3000
|
|
||||||
CMD ["arc", "serve", "--demo", "--host", "0.0.0.0"]
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
FROM node:20-bookworm-slim
|
|
||||||
RUN npm i -g mintlify
|
|
||||||
WORKDIR /app/docs
|
|
||||||
EXPOSE 3333
|
|
||||||
CMD ["mintlify", "dev", "--port", "3333", "--host", "0.0.0.0"]
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
FROM oven/bun:1 AS base
|
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends python3 make g++ && \
|
|
||||||
rm -rf /var/lib/apt/lists/*
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
COPY package.json bun.lock ./
|
|
||||||
COPY apps/arc-web/package.json apps/arc-web/
|
|
||||||
COPY packages/arc-api-client/package.json packages/arc-api-client/
|
|
||||||
RUN bun install --frozen-lockfile
|
|
||||||
|
|
||||||
COPY apps/arc-web apps/arc-web
|
|
||||||
COPY packages/arc-api-client packages/arc-api-client
|
|
||||||
|
|
||||||
WORKDIR /app/apps/arc-web
|
|
||||||
EXPOSE 5173
|
|
||||||
CMD ["bun", "run", "dev", "--host", "0.0.0.0"]
|
|
||||||
Loading…
Add table
Reference in a new issue