Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Failing after 6m9s
CI/CD Pipeline / Security Scanning (push) Successful in 26s
CI/CD Pipeline / Tests (3.11) (push) Failing after 5m24s
CI/CD Pipeline / Tests (3.12) (push) Failing after 5m23s
CI/CD Pipeline / Build Docker Image (push) Has been skipped
CI/CD Pipeline / Deploy to Staging (push) Has been skipped
CI/CD Pipeline / Deploy to Production (push) Has been skipped
CI/CD Pipeline / Notification (push) Successful in 1s
34 lines
755 B
Docker
34 lines
755 B
Docker
FROM node:20-alpine AS frontend
|
|
|
|
WORKDIR /app/dashboard/frontend
|
|
|
|
COPY dashboard/frontend/package.json ./
|
|
RUN npm install
|
|
|
|
COPY dashboard/frontend/ ./
|
|
RUN npm run build
|
|
|
|
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
gcc \
|
|
libpq-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY pyproject.toml README.md ./
|
|
COPY src/ ./src/
|
|
COPY migrations/ ./migrations/
|
|
COPY alembic.ini ./
|
|
COPY dashboard/ ./dashboard/
|
|
|
|
RUN pip install --no-cache-dir ".[ai]"
|
|
|
|
COPY --from=frontend /app/dashboard/frontend/dist /app/dashboard/frontend/dist
|
|
|
|
RUN useradd -m -u 1000 guardden && chown -R guardden:guardden /app
|
|
USER guardden
|
|
|
|
CMD ["uvicorn", "guardden.dashboard.main:app", "--host", "0.0.0.0", "--port", "8000"]
|