Files
alert-message-center/apps/server/Dockerfile
2026-01-12 15:08:31 +08:00

16 lines
220 B
Docker

FROM oven/bun:1-alpine
WORKDIR /app
# Copy the entire project for monorepo context
COPY . .
# Install dependencies
RUN bun install --frozen-lockfile
WORKDIR /app/apps/server
EXPOSE 3000
CMD ["bun", "run", "start"]