Skip to content
Closed
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY frontend/ ./
RUN npm run build

# Stage 2: Python runtime
FROM python:3.12-slim AS runtime
FROM python:3.14-slim AS runtime

# Install uv for fast dependency resolution
COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.sandbox
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# FormicOS Sandbox — Minimal Python image for code execution (Wave 14)
# Build: docker build -f Dockerfile.sandbox -t formicos-sandbox:latest .

FROM python:3.12-slim
FROM python:3.14-slim

# No network access, read-only root, writable /tmp only
RUN useradd --create-home --shell /bin/false sandbox
Expand Down
Loading