mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-06-22 04:22:07 +08:00

* Update Dockerfile (#1231) * Dockerfile: re-add prod-deps stage and fix copies --------- Co-authored-by: Loris <loris.rion@gmail.com>
48 lines
1.5 KiB
Docker
48 lines
1.5 KiB
Docker
FROM node:22-slim AS base
|
|
|
|
ENV PNPM_HOME="/pnpm"
|
|
ENV PATH="$PNPM_HOME:$PATH"
|
|
|
|
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 && pnpm run build
|
|
|
|
# Install Go
|
|
FROM golang:1.24 AS go-base
|
|
COPY sharedLibs/go-html-to-md /app/sharedLibs/go-html-to-md
|
|
|
|
# Install Go dependencies and build parser lib
|
|
RUN cd /app/sharedLibs/go-html-to-md && \
|
|
go mod tidy && \
|
|
go build -o html-to-markdown.so -buildmode=c-shared html-to-markdown.go && \
|
|
chmod +x html-to-markdown.so
|
|
|
|
# Install Rust
|
|
FROM rust:1-slim AS rust-base
|
|
COPY sharedLibs/html-transformer /app/sharedLibs/html-transformer
|
|
|
|
# Install Rust dependencies and build transformer lib
|
|
RUN cd /app/sharedLibs/html-transformer && \
|
|
cargo build --release && \
|
|
chmod +x target/release/libhtml_transformer.so
|
|
|
|
FROM base
|
|
COPY --from=build /app/dist /app/dist
|
|
COPY --from=prod-deps /app/node_modules /app/node_modules
|
|
COPY --from=go-base /app/sharedLibs/go-html-to-md/html-to-markdown.so /app/sharedLibs/go-html-to-md/html-to-markdown.so
|
|
COPY --from=rust-base /app/sharedLibs/html-transformer/target/release/libhtml_transformer.so /app/sharedLibs/html-transformer/target/release/libhtml_transformer.so
|
|
|
|
# Start the server by default, this can be overwritten at runtime
|
|
EXPOSE 8080
|
|
|
|
# Make sure the entrypoint script has the correct line endings
|
|
RUN sed -i 's/\r$//' /app/docker-entrypoint.sh
|
|
|
|
ENTRYPOINT "/app/docker-entrypoint.sh"
|