- Dockerfile: Update binary name from attendance to tutortool to fix the release build pipeline failure. - Backend: Expose test_mode in AppState to conditionally disable the secure flag on auth cookies during local E2E testing over HTTP. - Backend: Enable tower-http trace feature and attach TraceLayer for improved request logging. - Frontend: Refactor auth.svelte.ts to a plain reactive object to resolve initialization race conditions during tests. - Frontend: Append cache-busting timestamp to /api/auth/me to prevent stale session states. - Frontend: Update Playwright locator in superadmin.spec.ts for greater resilience. - Makefile: Inject required environment variables (STATIC_DIR, JWT_SECRET) into the test-up target.
37 lines
1.3 KiB
Docker
37 lines
1.3 KiB
Docker
# --- Frontend Build ---
|
|
FROM node:22-alpine AS frontend-builder
|
|
WORKDIR /app/frontend
|
|
RUN corepack enable && corepack prepare pnpm --activate
|
|
COPY frontend/package.json frontend/pnpm-lock.yaml ./
|
|
RUN pnpm install --frozen-lockfile
|
|
COPY frontend/ ./
|
|
RUN pnpm run check
|
|
RUN pnpm run build
|
|
|
|
# --- Backend Build ---
|
|
FROM rust:1.95-slim AS backend-builder
|
|
WORKDIR /app/backend
|
|
COPY backend/Cargo.toml backend/Cargo.lock ./
|
|
RUN mkdir src && echo "fn main() {}" > src/main.rs && cargo build --release && rm -rf src
|
|
COPY backend/src ./src
|
|
COPY backend/migrations ./migrations
|
|
COPY backend/demo ./demo
|
|
RUN touch src/main.rs && cargo build --release
|
|
|
|
# --- Runtime ---
|
|
FROM debian:bookworm-slim
|
|
RUN apt-get update && apt-get install -y ca-certificates curl && rm -rf /var/lib/apt/lists/*
|
|
RUN useradd -u 1000 -m app
|
|
WORKDIR /app
|
|
COPY --from=backend-builder /app/backend/target/release/tutortool ./server
|
|
COPY --from=backend-builder /app/backend/demo ./backend/demo
|
|
COPY --from=frontend-builder /app/frontend/build ./frontend/build
|
|
|
|
ENV STATIC_DIR=/app/frontend/build
|
|
ENV DATABASE_URL=sqlite:/data/attendance.db
|
|
EXPOSE 3000
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s \
|
|
CMD curl -fs http://localhost:3000/health || exit 1
|
|
USER app
|
|
CMD ["./server"]
|