Complete architecture document set with multi-model review remediation: - Frozen interface contracts, runtime semantics, DB schemas - Event/tool/error/provider registries - Scheduler and main agent state machines - C4 module/code views, solution architecture, baseline V1 - Multi-model review reports and joint assessment - Phase-gate remediation complete (P0/P1/P2/UX resolved) - Implementation plan with T-000A through T-045 - Reference folders kept as placeholders only
21 lines
751 B
Docker
21 lines
751 B
Docker
FROM ubuntu:24.04
|
|
|
|
# TODO(mbolin): Published to docker.io/mbolin491/codex-bazel:latest for
|
|
# initial debugging, but we should publish to a more proper location.
|
|
#
|
|
# docker buildx create --use
|
|
# docker buildx build --platform linux/amd64,linux/arm64 -f .github/workflows/Dockerfile.bazel -t mbolin491/codex-bazel:latest --push .
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
curl git python3 ca-certificates && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install dotslash.
|
|
RUN curl -LSfs "https://github.com/facebook/dotslash/releases/download/v0.5.8/dotslash-ubuntu-22.04.$(uname -m).tar.gz" | tar fxz - -C /usr/local/bin
|
|
|
|
# Ubuntu 24.04 ships with user 'ubuntu' already created with UID 1000.
|
|
USER ubuntu
|
|
|
|
WORKDIR /workspace
|