We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a263e8 commit 54e555dCopy full SHA for 54e555d
Dockerfile
@@ -7,11 +7,11 @@ COPY . /node_modules/fastembed
7
WORKDIR /node_modules/fastembed
8
9
FROM base AS prod-deps
10
-RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile
+RUN yarn install
11
12
FROM base AS build
13
-RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
14
-RUN pnpm run tsc
+RUN yarn install --frozen-lockfile
+RUN yarn run tsc
15
#RUN pnpm pack
16
17
FROM base
0 commit comments