Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/everything/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ COPY tsconfig.json /tsconfig.json

WORKDIR /app

RUN npm install -g npm@^11.5.1

RUN --mount=type=cache,target=/root/.npm npm install

FROM node:22-alpine AS release
Expand Down
2 changes: 2 additions & 0 deletions src/filesystem/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ WORKDIR /app
COPY src/filesystem /app
COPY tsconfig.json /tsconfig.json

RUN npm install -g npm@^11.5.1

RUN --mount=type=cache,target=/root/.npm npm install

RUN --mount=type=cache,target=/root/.npm-production npm ci --ignore-scripts --omit-dev
Expand Down
2 changes: 2 additions & 0 deletions src/memory/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ COPY tsconfig.json /tsconfig.json

WORKDIR /app

RUN npm install -g npm@^11.5.1

RUN --mount=type=cache,target=/root/.npm npm install

RUN --mount=type=cache,target=/root/.npm-production npm ci --ignore-scripts --omit-dev
Expand Down
2 changes: 2 additions & 0 deletions src/sequentialthinking/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ COPY tsconfig.json /tsconfig.json

WORKDIR /app

RUN npm install -g npm@^11.5.1

RUN --mount=type=cache,target=/root/.npm npm install

RUN --mount=type=cache,target=/root/.npm-production npm ci --ignore-scripts --omit-dev
Expand Down