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
4 changes: 2 additions & 2 deletions packages/actor-scraper/cheerio-scraper/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build context is the monorepo root (set via dockerContextDir in .actor/actor.json),
# so the build can use the pnpm workspace lockfile for a deterministic install.
FROM apify/actor-node:24 AS builder
FROM apify/actor-node:26 AS builder

WORKDIR /app

Expand All @@ -24,7 +24,7 @@ RUN pnpm --filter actor-cheerio-scraper... build
# @apify/scraper-tools (a runtime workspace dep) into node_modules instead of symlinking it.
RUN pnpm --config.inject-workspace-packages=true --filter actor-cheerio-scraper deploy --prod /deploy

FROM apify/actor-node:24
FROM apify/actor-node:26

WORKDIR /usr/src/app

Expand Down
4 changes: 2 additions & 2 deletions packages/actor-scraper/jsdom-scraper/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build context is the monorepo root (set via dockerContextDir in .actor/actor.json),
# so the build can use the pnpm workspace lockfile for a deterministic install.
FROM apify/actor-node:24 AS builder
FROM apify/actor-node:26 AS builder

WORKDIR /app

Expand All @@ -24,7 +24,7 @@ RUN pnpm --filter actor-jsdom-scraper... build
# @apify/scraper-tools (a runtime workspace dep) into node_modules instead of symlinking it.
RUN pnpm --config.inject-workspace-packages=true --filter actor-jsdom-scraper deploy --prod /deploy

FROM apify/actor-node:24
FROM apify/actor-node:26

WORKDIR /usr/src/app

Expand Down
4 changes: 2 additions & 2 deletions packages/actor-scraper/sitemap-scraper/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build context is the monorepo root (set via dockerContextDir in .actor/actor.json),
# so the build can use the pnpm workspace lockfile for a deterministic install.
FROM apify/actor-node:24 AS builder
FROM apify/actor-node:26 AS builder

WORKDIR /app

Expand All @@ -24,7 +24,7 @@ RUN pnpm --filter @apify/actor-sitemap-extractor... build
# @apify/scraper-tools (a runtime workspace dep) into node_modules instead of symlinking it.
RUN pnpm --config.inject-workspace-packages=true --filter @apify/actor-sitemap-extractor deploy --prod /deploy

FROM apify/actor-node:24
FROM apify/actor-node:26

WORKDIR /usr/src/app

Expand Down
Loading