
OpenAI introduced recently CodexAI:
A cloud-based software engineering agent that can work on many tasks in parallel, powered by codex-1. Available to ChatGPT Pro, Team, and Enterprise users today, and Plus users soon.
Getting Started with CodexAI Docker Image
OpenAI provides a reference implementation of the base Docker image, available on GitHub: https://github.com/openai/codex-universal/ .
The Docker image comes preloaded with a wide range of programming languages and tools, making it ideal for polyglot development:
Running the Docker Image on Linux
Here’s how I ran the Codex Universal image on my Linux machine:
$ uname -v && \
cargo version && \
docker run --rm -it \
-e CODEX_ENV_RUST_VERSION=1.87.0 \
-v "$(pwd)":/workspace/"$(basename "$(pwd)")" \
-w /workspace/"$(basename "$(pwd)")" \
ghcr.io/openai/codex-universal:latest
Example output:
#63-Ubuntu SMP PREEMPT_DYNAMIC Tue Apr 15 19:04:15 UTC 2025
cargo 1.87.0 (99624be96 2025-05-06)
==================================
Welcome to openai/codex-universal!
==================================
Configuring language runtimes...
# Rust: 1.87.0 (default: 1.87.0)
Environment ready. Dropping you into a bash shell.
root@60e2f3e778a8:/workspace/ls#
You’re now inside a container with a fully configured multi-language development environment, ready to leverage CodexAI’s capabilities.
Leave a Reply