Files
archived-gitea-ai-assistant/e2e/Dockerfile.e2e

17 lines
340 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# E2E 测试用简化 Dockerfile跳过 frontend 构建)
FROM oven/bun:1
WORKDIR /app
RUN apt-get update && apt-get install -y git ripgrep curl && rm -rf /var/lib/apt/lists/*
COPY package.json bun.lock* bun.lockb* ./
RUN bun install --no-frozen-lockfile
COPY src ./src
COPY tsconfig.json .
EXPOSE 5174
CMD ["bun", "run", "start"]