forked from koala73/worldmonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile.seed-bundle-portwatch-port-activity
More file actions
31 lines (26 loc) · 1.51 KB
/
Copy pathDockerfile.seed-bundle-portwatch-port-activity
File metadata and controls
31 lines (26 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# =============================================================================
# Seed Bundle: PortWatch Port-Activity (12-hour cron, standalone)
# =============================================================================
# Runs scripts/seed-bundle-portwatch-port-activity.mjs which spawns the single
# PW-Port-Activity section via _bundle-runner.mjs. Split out of the main
# portwatch bundle on 2026-04-20 because ArcGIS Daily_Ports_Data scales poorly
# at the per-country level — see the bundle script header for the full
# rationale.
#
# Runtime deps this image needs:
# - Node 22 Alpine (digest-pinned below; ESM, AbortSignal.any, fetch)
# - scripts/ tree (seeder + _seed-utils + _proxy-utils + _country-resolver
# + _bundle-runner + proxy helpers)
# - shared/ (country mappings that _country-resolver depends on)
# - .nvmrc? (not needed; node version baked into the base image)
# =============================================================================
FROM node:24-alpine@sha256:a0b9bf06e4e6193cf7a0f58816cc935ff8c2a908f81e6f1a95432d679c54fbfd
WORKDIR /app
# Ship the full scripts/ tree rather than cherry-picking. The cherry-picked
# approach has broken three+ seed services in the past when a local import
# was added without updating the Dockerfile (PR #3041, #3052, #3196). 2 MB of
# scripts + robustness is a good trade.
COPY scripts/ ./scripts/
COPY shared/ ./shared/
ENV NODE_OPTIONS="--max-old-space-size=1024 --dns-result-order=ipv4first"
CMD ["node", "scripts/seed-bundle-portwatch-port-activity.mjs"]