File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 2424 registry : ${{ env.REGISTRY }}
2525 username : ${{ github.actor }}
2626 password : ${{ secrets.GITHUB_TOKEN }}
27+ - name : Set up Docker Buildx
28+ uses : docker/setup-buildx-action@v3
2729 - name : Build and push
2830 uses : docker/build-push-action@v6
2931 with :
3032 push : true
3133 tags : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
34+ file : Dockerfile.test
Original file line number Diff line number Diff line change 1+ FROM ubuntu:24.04
2+
3+ ENV LANG="C.UTF-8"
Original file line number Diff line number Diff line change 11# codex-universal
22Base docker image used in Codex environments
3+
4+ # Usage
5+
6+ ```
7+ docker pull ghcr.io/openai/codex-universal:latest
8+ ```
9+
10+ ```
11+ docker run -v $(pwd):/workspace/$(basename $(pwd)) -it ghcr.io/openai/codex-universal:latest
12+ ```
You can’t perform that action at this time.
0 commit comments