Skip to content

Commit 6dd81c5

Browse files
committed
Use new github org
1 parent daaa590 commit 6dd81c5

11 files changed

Lines changed: 21 additions & 21 deletions

aws/setup/docker/AWSCodeClash.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ WORKDIR /app
3737

3838
# Clone repository (you'll pass GITHUB_TOKEN as env var)
3939
ARG GITHUB_TOKEN
40-
RUN git clone https://klieret:${GITHUB_TOKEN}@github.com/emagedoc/CodeClash.git . \
40+
RUN git clone https://klieret:${GITHUB_TOKEN}@github.com/CodeClash-ai/CodeClash.git . \
4141
&& python3.11 -m venv .venv \
4242
&& . .venv/bin/activate \
4343
&& pip install -e '.[dev]'

docker/BattleCode.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
66
rm -rf /var/lib/apt/lists/*
77

88
ARG GITHUB_TOKEN
9-
RUN git clone https://${GITHUB_TOKEN}@github.com/emagedoc/BattleCode.git /workspace \
9+
RUN git clone https://${GITHUB_TOKEN}@github.com/CodeClash-ai/BattleCode.git /workspace \
1010
&& cd /workspace \
11-
&& git remote set-url origin https://github.com/emagedoc/BattleCode.git \
11+
&& git remote set-url origin https://github.com/CodeClash-ai/BattleCode.git \
1212
&& unset GITHUB_TOKEN
1313
WORKDIR /workspace
1414

docker/BattleSnake.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ RUN ARCH=$(dpkg --print-architecture) && \
2020

2121
# Inject GitHub token for private repo access
2222
ARG GITHUB_TOKEN
23-
RUN git clone https://${GITHUB_TOKEN}@github.com/emagedoc/BattleSnake.git /workspace \
23+
RUN git clone https://${GITHUB_TOKEN}@github.com/CodeClash-ai/BattleSnake.git /workspace \
2424
&& cd /workspace \
25-
&& git remote set-url origin https://github.com/emagedoc/BattleSnake.git \
25+
&& git remote set-url origin https://github.com/CodeClash-ai/BattleSnake.git \
2626
&& unset GITHUB_TOKEN
2727

2828
WORKDIR /workspace

docker/CoreWar.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ RUN apt-get update \
66
&& rm -rf /var/lib/apt/lists/*
77

88
ARG GITHUB_TOKEN
9-
RUN git clone https://${GITHUB_TOKEN}@github.com/emagedoc/CoreWar.git /workspace \
9+
RUN git clone https://${GITHUB_TOKEN}@github.com/CodeClash-ai/CoreWar.git /workspace \
1010
&& cd /workspace \
11-
&& git remote set-url origin https://github.com/emagedoc/CoreWar.git \
11+
&& git remote set-url origin https://github.com/CodeClash-ai/CoreWar.git \
1212
&& unset GITHUB_TOKEN
1313

1414
WORKDIR /workspace

docker/DummyGame.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ RUN apt-get update \
1313

1414
# Inject GitHub token for private repo access
1515
ARG GITHUB_TOKEN
16-
RUN git clone https://${GITHUB_TOKEN}@github.com/emagedoc/DummyGame.git /workspace \
16+
RUN git clone https://${GITHUB_TOKEN}@github.com/CodeClash-ai/DummyGame.git /workspace \
1717
&& cd /workspace \
18-
&& git remote set-url origin https://github.com/emagedoc/DummyGame.git \
18+
&& git remote set-url origin https://github.com/CodeClash-ai/DummyGame.git \
1919
&& unset GITHUB_TOKEN
2020

2121
WORKDIR /workspace

docker/Halite-II.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ RUN apt-get update && apt-get install -y ocaml ocamlbuild
2020

2121
# Clone Halite repository
2222
ARG GITHUB_TOKEN
23-
RUN git clone https://${GITHUB_TOKEN}@github.com/emagedoc/Halite-II.git /workspace \
23+
RUN git clone https://${GITHUB_TOKEN}@github.com/CodeClash-ai/Halite-II.git /workspace \
2424
&& cd /workspace \
25-
&& git remote set-url origin https://github.com/emagedoc/Halite-II.git \
25+
&& git remote set-url origin https://github.com/CodeClash-ai/Halite-II.git \
2626
&& unset GITHUB_TOKEN
2727

2828
WORKDIR /workspace

docker/Halite-III.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ RUN apt-get update && apt-get install -y ocaml ocamlbuild
2020

2121
# Clone Halite repository
2222
ARG GITHUB_TOKEN
23-
RUN git clone https://${GITHUB_TOKEN}@github.com/emagedoc/Halite-III.git /workspace \
23+
RUN git clone https://${GITHUB_TOKEN}@github.com/CodeClash-ai/Halite-III.git /workspace \
2424
&& cd /workspace \
25-
&& git remote set-url origin https://github.com/emagedoc/Halite-III.git \
25+
&& git remote set-url origin https://github.com/CodeClash-ai/Halite-III.git \
2626
&& unset GITHUB_TOKEN
2727

2828
WORKDIR /workspace

docker/Halite.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ RUN apt-get update && apt-get install -y ocaml ocamlbuild
2020

2121
# Clone Halite repository
2222
ARG GITHUB_TOKEN
23-
RUN git clone https://${GITHUB_TOKEN}@github.com/emagedoc/Halite.git /workspace \
23+
RUN git clone https://${GITHUB_TOKEN}@github.com/CodeClash-ai/Halite.git /workspace \
2424
&& cd /workspace \
25-
&& git remote set-url origin https://github.com/emagedoc/Halite.git \
25+
&& git remote set-url origin https://github.com/CodeClash-ai/Halite.git \
2626
&& unset GITHUB_TOKEN
2727

2828
WORKDIR /workspace

docker/HuskyBench.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ lsof \
1212
&& rm -rf /var/lib/apt/lists/*
1313

1414
ARG GITHUB_TOKEN
15-
RUN git clone https://${GITHUB_TOKEN}@github.com/emagedoc/HuskyBench.git /workspace \
15+
RUN git clone https://${GITHUB_TOKEN}@github.com/CodeClash-ai/HuskyBench.git /workspace \
1616
&& cd /workspace \
17-
&& git remote set-url origin https://github.com/emagedoc/HuskyBench.git \
17+
&& git remote set-url origin https://github.com/CodeClash-ai/HuskyBench.git \
1818
&& unset GITHUB_TOKEN
1919

2020
WORKDIR /workspace

docker/RoboCode.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ RUN apt update && apt install -y \
1818
&& rm -rf /var/lib/apt/lists/*
1919

2020
ARG GITHUB_TOKEN
21-
RUN git clone https://${GITHUB_TOKEN}@github.com/emagedoc/RoboCode.git /workspace \
21+
RUN git clone https://${GITHUB_TOKEN}@github.com/CodeClash-ai/RoboCode.git /workspace \
2222
&& cd /workspace \
23-
&& git remote set-url origin https://github.com/emagedoc/RoboCode.git \
23+
&& git remote set-url origin https://github.com/CodeClash-ai/RoboCode.git \
2424
&& unset GITHUB_TOKEN
2525

2626
WORKDIR /workspace

0 commit comments

Comments
 (0)