Skip to content

Commit 9455380

Browse files
committed
added configure.sh
1 parent 3948315 commit 9455380

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,9 @@ RUN mise install "erlang@${ERLANG_VERSION}" "elixir@${ELIXIR_VERSION}-otp-27" \
302302
COPY setup_universal.sh /opt/codex/setup_universal.sh
303303
RUN chmod +x /opt/codex/setup_universal.sh
304304

305+
COPY configure.sh /opt/codex/configure.sh
306+
RUN chmod +x /opt/codex/configure.sh
307+
305308
### VERIFICATION SCRIPT ###
306309

307310
COPY verify.sh /opt/verify.sh

configure.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
# Install necessary dependencies (@openai/codex, )
4+
npm install @openai/codex@latest
5+
6+
7+
8+
# Configure git
9+
git config --global user.name "cephaspad"
10+
git config --global user.email "[email protected]"

entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ echo "Welcome to openai/codex-universal!"
55
echo "=================================="
66

77
/opt/codex/setup_universal.sh
8+
/opt/codex/configure.sh
89

910
echo "Environment ready. Dropping you into a bash shell."
1011
exec bash --login "$@"

0 commit comments

Comments
 (0)