-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from SchmidtDSE/debug/make_docker_use_amd64
solve filesystem OSX issue for pixi mount
- Loading branch information
Showing
12 changed files
with
9,172 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#/bin/bash | ||
|
||
apt-get update && apt-get install -y git openssh-client curl bash-completion | ||
|
||
# To enable bash completion for git | ||
echo "source /usr/share/bash-completion/completions/git" >> ~/.bashrc |
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
.devcontainer/scripts/post_create/verify_or_install_pixi_env.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/bash | ||
pixi install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
DIR=".devcontainer/scripts/on_build" | ||
|
||
for script in "$DIR"/*.sh; do | ||
if [ -f "$script" ]; then | ||
echo "=== Executing $script ===" | ||
bash "$script" | ||
|
||
# Check exit status | ||
if [ $? -eq 0 ]; then | ||
echo "✓ $script completed successfully" | ||
else | ||
echo "❌ $script failed with exit code $?" | ||
fi | ||
echo | ||
fi | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
DIR=".devcontainer/scripts/post_create" | ||
|
||
for script in "$DIR"/*.sh; do | ||
if [ -f "$script" ]; then | ||
echo "=== Executing $script ===" | ||
bash "$script" | ||
|
||
# Check exit status | ||
if [ $? -eq 0 ]; then | ||
echo "✓ $script completed successfully" | ||
else | ||
echo "❌ $script failed with exit code $?" | ||
fi | ||
echo | ||
fi | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.