Files
pikasTech-unidesk/src/components/backend-core/Dockerfile
T
Codex a242e3e3ec feat: expand scheduling, notifications, and queue runtime
- add scheduled task plumbing across backend core, CLI, and frontend surfaces

- add frontend notification UI and keep service pages using the repaired shared stylesheet

- refactor code queue runtime and update baidu netdisk/service integration docs
2026-05-13 08:43:43 +00:00

9 lines
338 B
Docker

FROM oven/bun:1-alpine
RUN apk add --no-cache postgresql16-client tar gzip
WORKDIR /app/src/components/backend-core
COPY src/components/backend-core/package.json ./package.json
RUN bun install --production
COPY src/components/shared /app/src/components/shared
COPY src/components/backend-core/src ./src
CMD ["bun", "run", "src/index.ts"]