improve note
ci / build (push) Failing after 10m52s
Details
ci / build (push) Failing after 10m52s
Details
This commit is contained in:
parent
3b13dbe342
commit
a7b6439418
|
@ -1,5 +1,8 @@
|
||||||
## d.worker.dockerfile
|
## d.worker.dockerfile
|
||||||
##
|
##
|
||||||
|
## @futureporn/worker is the system component which runs background tasks.
|
||||||
|
## Tasks such as thumbnail generation, video encoding, file transfers, etc.
|
||||||
|
##
|
||||||
## 'temporal-worker' is already a pod name (temporal helm chart creates it for it's internal use)
|
## 'temporal-worker' is already a pod name (temporal helm chart creates it for it's internal use)
|
||||||
## so our docker image is called fp/worker, not fp/temporal-worker
|
## so our docker image is called fp/worker, not fp/temporal-worker
|
||||||
## not that we need to name the docker image differently, but
|
## not that we need to name the docker image differently, but
|
||||||
|
@ -61,6 +64,8 @@ RUN pnpm --filter=!@futureporn/temporal-workflows -r build
|
||||||
|
|
||||||
## Deploy (copy all production code into one place)
|
## Deploy (copy all production code into one place)
|
||||||
RUN pnpm deploy --filter=@futureporn/temporal-worker --prod /prod/temporal-worker
|
RUN pnpm deploy --filter=@futureporn/temporal-worker --prod /prod/temporal-worker
|
||||||
|
RUN ls -lash /prod/temporal-worker
|
||||||
|
# RUN ls -lash /prod/temporal-worker/
|
||||||
|
|
||||||
FROM base AS worker
|
FROM base AS worker
|
||||||
COPY --from=build /prod/temporal-worker .
|
COPY --from=build /prod/temporal-worker .
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@futureporn/temporal-worker",
|
"name": "@futureporn/temporal-worker",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "1.2.0",
|
"version": "1.3.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"files": [
|
"files": [
|
||||||
"dist"
|
"dist"
|
||||||
|
|
|
@ -22,8 +22,7 @@
|
||||||
},
|
},
|
||||||
// Include the necessary files for your project
|
// Include the necessary files for your project
|
||||||
"include": [
|
"include": [
|
||||||
"./src/**/*.ts",
|
"./src/**/*.ts"
|
||||||
"./src/**/*.tsx"
|
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"node_modules"
|
"node_modules"
|
||||||
|
|
Loading…
Reference in New Issue