trigger.dev 0.0.0-v3-canary-20240322151917 → 0.0.0-v3-canary-20240322152839
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.
package/dist/Containerfile.prod
CHANGED
|
@@ -4,16 +4,13 @@ RUN apk add --no-cache dumb-init
|
|
|
4
4
|
|
|
5
5
|
WORKDIR /app
|
|
6
6
|
|
|
7
|
-
#
|
|
8
|
-
COPY --chown=node:node
|
|
7
|
+
# copy all the files just in case anything is needed in postinstall
|
|
8
|
+
COPY --chown=node:node . .
|
|
9
9
|
RUN npm ci --no-fund --no-audit && npm cache clean --force
|
|
10
10
|
|
|
11
11
|
# Development or production stage builds upon the base stage
|
|
12
12
|
FROM base AS final
|
|
13
13
|
|
|
14
|
-
# Copy the rest of the application
|
|
15
|
-
COPY --chown=node:node . .
|
|
16
|
-
|
|
17
14
|
# Use ARG for build-time variables
|
|
18
15
|
ARG TRIGGER_PROJECT_ID
|
|
19
16
|
ARG TRIGGER_DEPLOYMENT_ID
|
package/dist/index.js
CHANGED
|
@@ -800,7 +800,7 @@ import invariant from "tiny-invariant";
|
|
|
800
800
|
import { z as z4 } from "zod";
|
|
801
801
|
|
|
802
802
|
// package.json
|
|
803
|
-
var version = "0.0.0-v3-canary-
|
|
803
|
+
var version = "0.0.0-v3-canary-20240322152839";
|
|
804
804
|
var dependencies = {
|
|
805
805
|
"@baselime/node-opentelemetry": "^0.4.6",
|
|
806
806
|
"@clack/prompts": "^0.7.0",
|
|
@@ -821,7 +821,7 @@ var dependencies = {
|
|
|
821
821
|
"@opentelemetry/sdk-trace-node": "^1.21.0",
|
|
822
822
|
"@opentelemetry/semantic-conventions": "^1.21.0",
|
|
823
823
|
"@traceloop/instrumentation-openai": "^0.3.9",
|
|
824
|
-
"@trigger.dev/core": "workspace:0.0.0-v3-canary-
|
|
824
|
+
"@trigger.dev/core": "workspace:0.0.0-v3-canary-20240322152839",
|
|
825
825
|
"@types/degit": "^2.8.3",
|
|
826
826
|
chalk: "^5.2.0",
|
|
827
827
|
chokidar: "^3.5.3",
|