feat: project durable agent conversations
This commit is contained in:
21
deploy/dokploy/web.Dockerfile
Normal file
21
deploy/dokploy/web.Dockerfile
Normal file
@@ -0,0 +1,21 @@
|
||||
FROM oven/bun:1.3.14 AS build
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY . .
|
||||
RUN bun install --frozen-lockfile
|
||||
RUN bun run --filter web build
|
||||
|
||||
FROM node:24-bookworm-slim
|
||||
|
||||
ENV HOST=0.0.0.0
|
||||
ENV NODE_ENV=production
|
||||
ENV PORT=3000
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY --from=build /app /app
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
CMD ["node", "apps/web/node_modules/.bin/react-router-serve", "apps/web/build/server/index.js"]
|
||||
Reference in New Issue
Block a user