Skip to content

Commit c5f8a7e

Browse files
committed
testing
1 parent 6dc4fcc commit c5f8a7e

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

.github/workflows/build-image.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ jobs:
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

Dockerfile.test

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
FROM ubuntu:24.04
2+
3+
ENV LANG="C.UTF-8"

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
11
# codex-universal
22
Base 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+
```

0 commit comments

Comments
 (0)