···11-# This file is generated by Dofigen v2.0.0
11+# This file is generated by Dofigen v2.2.0
22# See https://github.com/lenra-io/dofigen
3344node_modules
+4-4
apps/server/Dockerfile
···11# syntax=docker/dockerfile:1.7
22-# This file is generated by Dofigen v2.0.0
22+# This file is generated by Dofigen v2.2.0
33# See https://github.com/lenra-io/dofigen
4455# install
66-FROM oven/bun@sha256:eb409bed239c3adff079a6b71283f151e802d66b99f643ba7a71e1be7d3da513 AS install
66+FROM oven/bun@sha256:9a45ebd9a1e5403177064592e1564791443b1a459356c905d1112e32758dd454 AS install
77WORKDIR /app/
88RUN \
99 --mount=type=bind,target=package.json,source=package.json \
···2727 bun install --production --ignore-scripts --frozen-lockfile --verbose
28282929# build
3030-FROM oven/bun@sha256:eb409bed239c3adff079a6b71283f151e802d66b99f643ba7a71e1be7d3da513 AS build
3030+FROM oven/bun@sha256:9a45ebd9a1e5403177064592e1564791443b1a459356c905d1112e32758dd454 AS build
3131ENV NODE_ENV="production"
3232WORKDIR /app/apps/server
3333COPY \
···4040RUN bun build --compile --sourcemap src/index.ts --outfile=app
41414242# runtime
4343-FROM debian@sha256:00558f781b91e90469812bad32002f311ab26ef241b4a1996f6600680ec82f5c AS runtime
4343+FROM debian@sha256:b0c91cc181796d34c53f7ea106fbcddaf87f3e601cc371af6a24a019a489c980 AS runtime
4444COPY \
4545 --from=build \
4646 --chown=1000:1000 \
···11-# This file is generated by Dofigen v2.1.0
11+# This file is generated by Dofigen v2.2.0
22# See https://github.com/lenra-io/dofigen
3344node_modules
+4-4
apps/workflows/Dockerfile
···11# syntax=docker/dockerfile:1.7
22-# This file is generated by Dofigen v2.1.0
22+# This file is generated by Dofigen v2.2.0
33# See https://github.com/lenra-io/dofigen
4455# install
66-FROM oven/bun@sha256:4ca745e33ed5b5b5233d3e1ed8d5e63dafd519d2adcfc37f65218ece032824f3 AS install
66+FROM oven/bun@sha256:9a45ebd9a1e5403177064592e1564791443b1a459356c905d1112e32758dd454 AS install
77WORKDIR /app/
88RUN \
99 --mount=type=bind,target=package.json,source=package.json \
···1717 bun install --production --ignore-scripts --frozen-lockfile --verbose
18181919# build
2020-FROM oven/bun@sha256:4ca745e33ed5b5b5233d3e1ed8d5e63dafd519d2adcfc37f65218ece032824f3 AS build
2020+FROM oven/bun@sha256:9a45ebd9a1e5403177064592e1564791443b1a459356c905d1112e32758dd454 AS build
2121ENV NODE_ENV="production"
2222WORKDIR /app/apps/workflows
2323COPY \
···3030RUN bun build --compile --sourcemap --format=cjs src/index.ts --outfile=app
31313232# runtime
3333-FROM debian@sha256:60a596681410bd31a48e5975806a24cd78328f3fd6b9ee5bc64dca6d46a51f29 AS runtime
3333+FROM debian@sha256:b0c91cc181796d34c53f7ea106fbcddaf87f3e601cc371af6a24a019a489c980 AS runtime
3434COPY \
3535 --from=build \
3636 --chown=1000:1000 \
+3-2
apps/workflows/README.md
···11## Development
2233To install dependencies:
44+45```sh
56bun install
67```
7889To run:
1010+911```sh
1012bun run dev
1113```
12141313-open http://localhost:3000
1414-1515+open <http://localhost:3000>
15161617## Deploy
1718