trigger.dev 0.0.0-prerelease-20240418145424 → 0.0.0-v2-prerelease-20240524135558

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,11 @@
1
- FROM node:20-bookworm-slim@sha256:d4cdfc305abe5ea78da7167bf78263c22596dc332f2654b662890777ea166224 AS base
1
+ FROM node:21-bookworm-slim@sha256:fb82287cf66ca32d854c05f54251fca8b572149163f154248df7e800003c90b5 AS base
2
2
 
3
3
  ENV DEBIAN_FRONTEND=noninteractive
4
4
  RUN apt-get update && apt-get install -y --no-install-recommends \
5
5
  busybox \
6
6
  ca-certificates \
7
7
  dumb-init \
8
+ git \
8
9
  openssl \
9
10
  && rm -rf /var/lib/apt/lists/*
10
11
 
@@ -18,6 +19,8 @@ COPY --chown=node:node . .
18
19
  USER node
19
20
  RUN npm ci --no-fund --no-audit && npm cache clean --force
20
21
 
22
+ __POST_INSTALL__
23
+
21
24
  # Development or production stage builds upon the base stage
22
25
  FROM base AS final
23
26