forked from Anush008/fastembed-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
21 lines (18 loc) · 937 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM node:23-slim AS base
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable
COPY . /node_modules/fastembed
WORKDIR /node_modules/fastembed
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 tsc
#RUN pnpm pack
FROM base
COPY --from=prod-deps /node_modules/fastembed/node_modules/@anush008 /app/node_modules/@anush008
COPY --from=prod-deps /node_modules/fastembed/node_modules/onnxruntime-node /app/node_modules/onnxruntime-node
COPY --from=prod-deps /node_modules/fastembed/node_modules/progress /app/node_modules/progress
COPY --from=prod-deps /node_modules/fastembed/node_modules/tar /app/node_modules/tar
COPY --from=build /node_modules/fastembed /app/node_modules/fastembed