Primer Commit.
This commit is contained in:
4
custom-scripts/01_install_git.sh
Executable file
4
custom-scripts/01_install_git.sh
Executable file
@@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Installing git
|
||||||
|
sudo apt update
|
||||||
|
sudo apt install -y git
|
13
custom-scripts/02_install_python.sh
Executable file
13
custom-scripts/02_install_python.sh
Executable file
@@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Installing Python
|
||||||
|
|
||||||
|
# Update package list
|
||||||
|
sudo apt update
|
||||||
|
|
||||||
|
# Install Python 3 and pip
|
||||||
|
sudo apt install -y python3-pip
|
||||||
|
|
||||||
|
# Verify Python installation
|
||||||
|
python3 -V
|
||||||
|
|
||||||
|
# Finished installing Python
|
8
docker-compose.yaml
Normal file
8
docker-compose.yaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
vscode:
|
||||||
|
image: aleleba/vscode
|
||||||
|
volumes:
|
||||||
|
- ./extensions.json:/home/extensions.json
|
||||||
|
- ./custom-scripts:/usr/bin/custom-scripts
|
31
extensions.json
Normal file
31
extensions.json
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"extensionsGroup": {
|
||||||
|
"description": "Extensions of Python",
|
||||||
|
"extensions": [
|
||||||
|
{
|
||||||
|
"name": "Python",
|
||||||
|
"notes": "Extension of Python",
|
||||||
|
"uniqueIdentifier": "ms-python.python"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Jupyter",
|
||||||
|
"notes": "Extension of Jupyter",
|
||||||
|
"uniqueIdentifier": "ms-toolsai.jupyter"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"extensionsGroup": {
|
||||||
|
"description": "Extensions of Cline",
|
||||||
|
"extensions": [
|
||||||
|
{
|
||||||
|
"name": "Cline",
|
||||||
|
"notes": "Extension of Cline",
|
||||||
|
"uniqueIdentifier": "saoudrizwan.claude-dev"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
Reference in New Issue
Block a user