delete dumb containers

memory-refactor
Patrick Cleaveliln 2025-07-16 02:48:28 +00:00
parent 47f66cd572
commit 86bae14dc6
3 changed files with 0 additions and 49 deletions

View File

@ -1,19 +0,0 @@
{
"image": "mcr.microsoft.com/devcontainers/cpp:ubuntu",
"customizations": {
"vscode": {
"extensions": [
"danielgavin.ols"
]
}
},
"features": {
"./odin-feature": {
"version": "latest"
},
"ghcr.io/devcontainers/features/rust:1": {
"version": "1.88.0",
"profile": "default"
}
}
}

View File

@ -1,11 +0,0 @@
{
"name": "Odin Compiler",
"id": "odin",
"version": "1.0.0",
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
],
"containerEnv": {
"ODIN_ROOT": "/usr/local/share/odin"
}
}

View File

@ -1,19 +0,0 @@
#!/bin/sh
set -e
git clone --branch "dev-2024-12" "https://github.com/odin-lang/Odin.git"
cd Odin
mkdir -p /usr/local/share/odin
cp -r ./base /usr/local/share/odin/
cp -r ./core /usr/local/share/odin/
cp -r ./vendor /usr/local/share/odin/
make release
cp ./odin /usr/local/bin/
echo "Installing SDL2 & SDL2_ttf"
apt update
apt --yes --force-yes install libsdl2-dev libsdl2-ttf-dev