mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 09:44:59 +00:00
aider: Add script to run a Docker container with Python 3.8 and launch bash.
# Context: USER: run a docker with python3.8 ASSISTANT: To run a Docker container with Python 3.8, you ^C KeyboardInterrupt USER: run a docker with python3.8 and launch bash ASSISTANT: To run a Docker container with Python 3.8 and launch bash, you need to modify the `docker.sh` script in the `benchmark` directory. Here is the change you need to make: ```bash benchmark/docker.sh <<<<<<< ORIGINAL ======= #!/bin/bash docker run -it --rm python:3.8 bash >>>>>>> UPDATED ``` This script will start a Docker container using the Python 3.8 image and launch bash. You can run this script from the terminal with the command `./benchmark/docker.sh`. Make sure the script has execute permissions. You can add them with the command `chmod +x benchmark/docker.sh` if needed.
This commit is contained in:
parent
c0a625d934
commit
0ab19aa97c
1 changed files with 2 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
|||
#!/bin/bash
|
||||
docker run -it --rm python:3.8 bash
|
Loading…
Add table
Add a link
Reference in a new issue