Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions dashboard/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ FROM python:3.11-slim

WORKDIR /app

# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
# Install system dependencies; upgrade base packages first to pick up
# security patches (perl-base CVE-2026-13221 / CVE-2026-42496 / CVE-2026-8376)
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends \
gcc \
&& rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 1 addition & 1 deletion dashboard/frontend/src/pages/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export default function Login() {

<Box sx={{ mt: 2, textAlign: "center" }}>
<Typography variant="caption" color="textSecondary">
Demo: admin / admin123
Acceso por invitación
</Typography>
</Box>
</CardContent>
Expand Down
Loading