Merge pull request #1833 from tlaurion/fix_git-dubious-ownership-in-repository

Docker image 0.2.4: Fix git dubious ownership in repository
This commit is contained in:
Thierry Laurion 2024-11-03 10:54:27 -05:00 committed by GitHub
commit 3ac02e72c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 6 deletions

View File

@ -45,7 +45,7 @@ commands:
jobs:
prep_env:
docker:
- image: tlaurion/heads-dev-env:v0.2.3
- image: tlaurion/heads-dev-env:v0.2.4
resource_class: large
working_directory: ~/heads
steps:
@ -115,7 +115,7 @@ jobs:
build_and_persist:
docker:
- image: tlaurion/heads-dev-env:v0.2.3
- image: tlaurion/heads-dev-env:v0.2.4
resource_class: large
working_directory: ~/heads
parameters:
@ -143,7 +143,7 @@ jobs:
build:
docker:
- image: tlaurion/heads-dev-env:v0.2.3
- image: tlaurion/heads-dev-env:v0.2.4
resource_class: large
working_directory: ~/heads
parameters:
@ -164,7 +164,7 @@ jobs:
save_cache:
docker:
- image: tlaurion/heads-dev-env:v0.2.3
- image: tlaurion/heads-dev-env:v0.2.4
resource_class: large
working_directory: ~/heads
steps:

View File

@ -139,15 +139,17 @@
-e ACLOCAL_PATH \
${self.devShell.${system}} >/devenv.sh
# Git configuration for safe directory access.
printf '[safe]\n\tdirectory = *\n' >/.gitconfig
mkdir /tmp; # Temporary directory for various operations.
chmod 1777 /tmp
# Ensure /etc/passwd and /etc/group exist with root entries
echo "root:x:0:0:root:/root:/bin/bash" > /etc/passwd
echo "root:x:0:" > /etc/group
mkdir -p /root
chmod 700 /root
# Git configuration for safe directory access.
echo -e '[safe]\n\tdirectory = *\n' > /root/.gitconfig
'';
};
});