Skip to content

Commit 1a9ddf0

Browse files
committed
add mcp_server_files.py to dockerfile
Signed-off-by: John <johnandersenpdx@gmail.com>
1 parent f45bfaa commit 1a9ddf0

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

github_webhook_events/agi.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5154,22 +5154,19 @@ async def tmux_test(
51545154
pane.send_keys(f"export {agi_name.upper()}_OUTPUT=" + str(pathlib.Path(tempdir, "output.txt")), enter=True)
51555155
pane.send_keys(f'export {agi_name.upper()}_OUTPUT_SOCK="{client_side_text_output_socket_path}"', enter=True)
51565156
pane.send_keys(f'rm -fv ${agi_name.upper()}_OUTPUT_SOCK', enter=True)
5157-
pane.send_keys(f'ln -s ${agi_name.upper()}_OUTPUT_SOCK', enter=True)
51585157
pane.send_keys(f'socat UNIX-LISTEN:${agi_name.upper()}_OUTPUT_SOCK,fork EXEC:"/usr/bin/tee ${agi_name.upper()}_OUTPUT" &', enter=True)
51595158
pane.send_keys(f'ls -lAF ${agi_name.upper()}_OUTPUT', enter=True)
51605159

51615160
pane.send_keys(f"export {agi_name.upper()}_NDJSON_OUTPUT=" + str(pathlib.Path(tempdir, "output.ndjson")), enter=True)
51625161
pane.send_keys(f'export {agi_name.upper()}_NDJSON_OUTPUT_SOCK="{client_side_ndjson_output_socket_path}"', enter=True)
51635162
pane.send_keys(f'rm -fv ${agi_name.upper()}_NDJSON_OUTPUT_SOCK', enter=True)
5164-
pane.send_keys(f'ln -s ${agi_name.upper()}_NDJSON_OUTPUT_SOCK', enter=True)
51655163
pane.send_keys(f'socat UNIX-LISTEN:${agi_name.upper()}_NDJSON_OUTPUT_SOCK,fork EXEC:"/usr/bin/tee ${agi_name.upper()}_NDJSON_OUTPUT" &', enter=True)
51665164
pane.send_keys(f'ls -lAF ${agi_name.upper()}_NDJSON_OUTPUT', enter=True)
51675165

51685166
pane.send_keys(f"export {agi_name.upper()}_INPUT=" + str(pathlib.Path(tempdir, "input.txt")), enter=True)
51695167
pane.send_keys(f'export {agi_name.upper()}_INPUT_SOCK="{client_side_input_socket_path}"', enter=True)
51705168
pane.send_keys(f"export {agi_name.upper()}_INPUT_LAST_LINE=" + str(pathlib.Path(tempdir, "input-last-line.txt")), enter=True)
51715169
pane.send_keys(f'rm -fv ${agi_name.upper()}_INPUT_SOCK', enter=True)
5172-
pane.send_keys(f'ln -s ${agi_name.upper()}_INPUT_SOCK', enter=True)
51735170
pane.send_keys(f'socat UNIX-LISTEN:${agi_name.upper()}_INPUT_SOCK,fork EXEC:"/usr/bin/tail -F ${agi_name.upper()}_INPUT" &', enter=True)
51745171
pane.send_keys(f'ls -lAF ${agi_name.upper()}_INPUT', enter=True)
51755172

github_webhook_events/agi_sshd.Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ COPY agi.py /host/
3939
COPY util.sh /host/
4040
COPY entrypoint-server.sh /host/
4141
COPY entrypoint.sh /host/
42+
COPY mcp_server_files.py /host/
4243

4344
RUN set -x \
4445
&& export CALLER_PATH=/host \

0 commit comments

Comments
 (0)